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 6008-6014 CREATE TABLE `sftp_servers` ( Link Here
6008
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
6008
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
6009
  `download_directory` mediumtext DEFAULT NULL,
6009
  `download_directory` mediumtext DEFAULT NULL,
6010
  `upload_directory` mediumtext DEFAULT NULL,
6010
  `upload_directory` mediumtext DEFAULT NULL,
6011
  `status` varchar(32) DEFAULT NULL,
6011
  `status` longtext DEFAULT NULL,
6012
  `debug` tinyint(1) NOT NULL DEFAULT 0,
6012
  `debug` tinyint(1) NOT NULL DEFAULT 0,
6013
  PRIMARY KEY (`id`),
6013
  PRIMARY KEY (`id`),
6014
  KEY `host_idx` (`host`)
6014
  KEY `host_idx` (`host`)
6015
- 

Return to bug 39190