| | |
| | | ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; |
| | | |
| | | |
| | | -- Table structure for table `cache_shared` |
| | | |
| | | CREATE TABLE `cache_shared` ( |
| | | `cache_key` varchar(255) /*!40101 CHARACTER SET ascii COLLATE ascii_general_ci */ NOT NULL , |
| | | `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', |
| | | `data` longtext NOT NULL, |
| | | INDEX `created_index` (`created`), |
| | | INDEX `cache_key_index` (`cache_key`) |
| | | ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; |
| | | |
| | | |
| | | -- Table structure for table `cache_index` |
| | | |
| | | CREATE TABLE `cache_index` ( |
| | |
| | | ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; |
| | | |
| | | |
| | | -- Table structure for table `system` |
| | | |
| | | CREATE TABLE `system` ( |
| | | `name` varchar(64) NOT NULL, |
| | | `value` mediumtext, |
| | | PRIMARY KEY(`name`) |
| | | ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; |
| | | |
| | | /*!40014 SET FOREIGN_KEY_CHECKS=1 */; |
| | | |
| | | INSERT INTO system (name, value) VALUES ('roundcube-version', '2013052500'); |