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 5984-5990 CREATE TABLE `sftp_servers` ( Link Here
5984
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
5984
  `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password',
5985
  `download_directory` mediumtext DEFAULT NULL,
5985
  `download_directory` mediumtext DEFAULT NULL,
5986
  `upload_directory` mediumtext DEFAULT NULL,
5986
  `upload_directory` mediumtext DEFAULT NULL,
5987
  `status` varchar(32) DEFAULT NULL,
5987
  `status` longtext DEFAULT NULL,
5988
  `debug` tinyint(1) NOT NULL DEFAULT 0,
5988
  `debug` tinyint(1) NOT NULL DEFAULT 0,
5989
  PRIMARY KEY (`id`),
5989
  PRIMARY KEY (`id`),
5990
  KEY `host_idx` (`host`)
5990
  KEY `host_idx` (`host`)
5991
- 

Return to bug 39190