| | |
| | | -- Roundcube Webmail initial database structure |
| | | |
| | | -- |
| | | -- Table structure for table cache |
| | | -- |
| | | |
| | | CREATE TABLE cache ( |
| | | user_id integer NOT NULL default 0, |
| | | cache_key varchar(128) NOT NULL default '', |
| | | created datetime NOT NULL default '0000-00-00 00:00:00', |
| | | data text NOT NULL |
| | | ); |
| | | |
| | | CREATE INDEX ix_cache_user_cache_key ON cache(user_id, cache_key); |
| | | CREATE INDEX ix_cache_created ON cache(created); |
| | | |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table contacts and related |
| | | -- |
| | | |
| | |
| | | |
| | | CREATE INDEX ix_contactgroupmembers_contact_id ON contactgroupmembers (contact_id); |
| | | |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table identities |
| | | -- |
| | |
| | | CREATE INDEX ix_identities_user_id ON identities(user_id, del); |
| | | CREATE INDEX ix_identities_email ON identities(email, del); |
| | | |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table users |
| | | -- |
| | |
| | | |
| | | CREATE UNIQUE INDEX ix_users_username ON users(username, mail_host); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table session |
| | | -- |
| | |
| | | |
| | | CREATE INDEX ix_session_changed ON session (changed); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table dictionary |
| | | -- |
| | |
| | | ); |
| | | |
| | | CREATE UNIQUE INDEX ix_dictionary_user_language ON dictionary (user_id, "language"); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table searches |
| | |
| | | |
| | | CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); |
| | | |
| | | -- -------------------------------------------------------- |
| | | -- |
| | | -- Table structure for table cache |
| | | -- |
| | | |
| | | CREATE TABLE cache ( |
| | | user_id integer NOT NULL default 0, |
| | | cache_key varchar(128) NOT NULL default '', |
| | | created datetime NOT NULL default '0000-00-00 00:00:00', |
| | | data text NOT NULL |
| | | ); |
| | | |
| | | CREATE INDEX ix_cache_user_cache_key ON cache(user_id, cache_key); |
| | | CREATE INDEX ix_cache_created ON cache(created); |
| | | |
| | | -- |
| | | -- Table structure for table cache_shared |
| | | -- |
| | | |
| | | CREATE TABLE cache_shared ( |
| | | cache_key varchar(255) NOT NULL, |
| | | created datetime NOT NULL default '0000-00-00 00:00:00', |
| | | data text NOT NULL |
| | | ); |
| | | |
| | | CREATE INDEX ix_cache_shared_cache_key ON cache_shared(cache_key); |
| | | CREATE INDEX ix_cache_shared_created ON cache_shared(created); |
| | | |
| | | -- |
| | | -- Table structure for table cache_index |
| | |
| | | |
| | | CREATE INDEX ix_cache_index_changed ON cache_index (changed); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table cache_thread |
| | | -- |
| | |
| | | ); |
| | | |
| | | CREATE INDEX ix_cache_thread_changed ON cache_thread (changed); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table cache_messages |
| | |
| | | |
| | | CREATE INDEX ix_cache_messages_changed ON cache_messages (changed); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | | -- |
| | | -- Table structure for table system |
| | | -- |
| | |
| | | value text NOT NULL |
| | | ); |
| | | |
| | | INSERT INTO system (name, value) VALUES ('roundcube-version', '2013042700'); |
| | | INSERT INTO system (name, value) VALUES ('roundcube-version', '2013052500'); |