Bugzilla – Attachment 162494 Details for
Bug 35724
Define non-standard port numbers for SFTP upload/download in EDI accounts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35724: Database changes
Bug-35724-Database-changes.patch (text/plain), 2.52 KB, created by
Martin Renvoize (ashimema)
on 2024-02-27 11:13:10 UTC
(
hide
)
Description:
Bug 35724: Database changes
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-02-27 11:13:10 UTC
Size:
2.52 KB
patch
obsolete
>From f4bfc23f5341ac57d0d400bd517a661872d69a2e Mon Sep 17 00:00:00 2001 >From: Alex Buckley <alexbuckley@catalyst.net.nz> >Date: Mon, 8 Jan 2024 14:40:38 +0000 >Subject: [PATCH] Bug 35724: Database changes > >Sponsored-by: Waikato Institute of Technology, New Zealand >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > ...d_upload_port_and_download_port_columns.pl | 30 +++++++++++++++++++ > installer/data/mysql/kohastructure.sql | 2 ++ > 2 files changed, 32 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_35724-add_upload_port_and_download_port_columns.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_35724-add_upload_port_and_download_port_columns.pl b/installer/data/mysql/atomicupdate/bug_35724-add_upload_port_and_download_port_columns.pl >new file mode 100755 >index 00000000000..ac2855bdc39 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_35724-add_upload_port_and_download_port_columns.pl >@@ -0,0 +1,30 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "35724", >+ description => "Add new fields to EDI accounts for librarians to configure non-standard EDI SFTP port numbers", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ if ( !column_exists( 'vendor_edi_accounts', 'upload_port' ) ) { >+ $dbh->do( >+ q{ >+ ALTER TABLE vendor_edi_accounts ADD COLUMN `upload_port` varchar(40) DEFAULT '22' AFTER `password` >+ } >+ ); >+ >+ say $out "Added column 'vendor_edi_accounts.upload_port'"; >+ } >+ >+ if ( !column_exists( 'vendor_edi_accounts', 'download_port' ) ) { >+ $dbh->do( >+ q{ >+ ALTER TABLE vendor_edi_accounts ADD COLUMN `download_port` varchar(40) DEFAULT '22' AFTER `password` >+ } >+ ); >+ >+ say $out "Added column 'vendor_edi_accounts.download_port'"; >+ } >+ }, >+}; >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 16310f0f449..9b2f2d02fe3 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -6427,6 +6427,8 @@ CREATE TABLE `vendor_edi_accounts` ( > `host` varchar(40) DEFAULT NULL, > `username` varchar(40) DEFAULT NULL, > `password` mediumtext DEFAULT NULL, >+ `upload_port` varchar(40) DEFAULT NULL, >+ `download_port` varchar(40) DEFAULT NULL, > `last_activity` date DEFAULT NULL, > `vendor_id` int(11) DEFAULT NULL, > `download_directory` mediumtext DEFAULT NULL, >-- >2.43.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35724
:
160644
|
160645
|
160646
|
160717
|
160718
|
160719
|
160720
| 162494 |
162495
|
162496
|
162497
|
162498
|
162499