View | Details | Raw Unified | Return to bug 30649
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_30649.pl (-1 / +1 lines)
Lines 7-13 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
        $dbh->do(q{
9
        $dbh->do(q{
10
            ALTER TABLE vendor_edi_accounts CHANGE COLUMN `password` `password` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL
10
            ALTER TABLE vendor_edi_accounts CHANGE COLUMN `password` `password` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
11
        });
11
        });
12
12
13
        require Koha::Encryption;
13
        require Koha::Encryption;
(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 5850-5856 CREATE TABLE `vendor_edi_accounts` ( Link Here
5850
  `description` mediumtext NOT NULL,
5850
  `description` mediumtext NOT NULL,
5851
  `host` varchar(40) DEFAULT NULL,
5851
  `host` varchar(40) DEFAULT NULL,
5852
  `username` varchar(40) DEFAULT NULL,
5852
  `username` varchar(40) DEFAULT NULL,
5853
  `password` varchar(256) DEFAULT NULL,
5853
  `password` mediumtext DEFAULT NULL,
5854
  `last_activity` date DEFAULT NULL,
5854
  `last_activity` date DEFAULT NULL,
5855
  `vendor_id` int(11) DEFAULT NULL,
5855
  `vendor_id` int(11) DEFAULT NULL,
5856
  `download_directory` mediumtext DEFAULT NULL,
5856
  `download_directory` mediumtext DEFAULT NULL,
5857
- 

Return to bug 30649