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

(-)a/installer/data/mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl (-1 / +1 lines)
Lines 31-37 return { Link Here
31
                    `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
31
                    `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
32
                    `download_directory` mediumtext DEFAULT NULL,
32
                    `download_directory` mediumtext DEFAULT NULL,
33
                    `upload_directory` mediumtext DEFAULT NULL,
33
                    `upload_directory` mediumtext DEFAULT NULL,
34
                    `status` varchar(32) DEFAULT NULL,
34
                    `status` longtext DEFAULT NULL,
35
                    `debug` tinyint(1) NOT NULL DEFAULT 0,
35
                    `debug` tinyint(1) NOT NULL DEFAULT 0,
36
                    PRIMARY KEY (`id`),
36
                    PRIMARY KEY (`id`),
37
                    KEY `host_idx` (`host`)
37
                    KEY `host_idx` (`host`)
(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 5986-5992 CREATE TABLE `sftp_servers` ( Link Here
5986
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
5986
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
5987
  `download_directory` mediumtext DEFAULT NULL,
5987
  `download_directory` mediumtext DEFAULT NULL,
5988
  `upload_directory` mediumtext DEFAULT NULL,
5988
  `upload_directory` mediumtext DEFAULT NULL,
5989
  `status` varchar(32) DEFAULT NULL,
5989
  `status` longtext DEFAULT NULL,
5990
  `debug` tinyint(1) NOT NULL DEFAULT 0,
5990
  `debug` tinyint(1) NOT NULL DEFAULT 0,
5991
  PRIMARY KEY (`id`),
5991
  PRIMARY KEY (`id`),
5992
  KEY `host_idx` (`host`)
5992
  KEY `host_idx` (`host`)
5993
- 

Return to bug 39190