Lines 5923-5928
CREATE TABLE `sessions` (
Link Here
|
5923 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5923 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5924 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5924 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5925 |
|
5925 |
|
|
|
5926 |
-- |
5927 |
-- Table structure for table `sftp_servers` |
5928 |
-- |
5929 |
|
5930 |
DROP TABLE IF EXISTS `sftp_servers`; |
5931 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
5932 |
/*!40101 SET character_set_client = utf8 */; |
5933 |
CREATE TABLE `sftp_servers` ( |
5934 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
5935 |
`name` varchar(80) NOT NULL, |
5936 |
`host` varchar(80) NOT NULL DEFAULT 'localhost', |
5937 |
`port` int(11) NOT NULL DEFAULT 22, |
5938 |
`transport` enum('ftp','sftp') NOT NULL DEFAULT 'sftp', |
5939 |
`passiv` tinyint(1) NOT NULL DEFAULT 1, |
5940 |
`user_name` varchar(80) DEFAULT NULL, |
5941 |
`password` mediumtext DEFAULT NULL, |
5942 |
`key_file` mediumtext DEFAULT NULL, |
5943 |
`auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password', |
5944 |
`download_directory` mediumtext DEFAULT NULL, |
5945 |
`upload_directory` mediumtext DEFAULT NULL, |
5946 |
`status` varchar(32) DEFAULT NULL, |
5947 |
`debug` tinyint(1) NOT NULL DEFAULT 0, |
5948 |
PRIMARY KEY (`id`), |
5949 |
KEY `host_idx` (`host`) |
5950 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5951 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5952 |
|
5926 |
-- |
5953 |
-- |
5927 |
-- Table structure for table `sms_providers` |
5954 |
-- Table structure for table `sms_providers` |
5928 |
-- |
5955 |
-- |
5929 |
- |
|
|