diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-25 11:51:11 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-25 11:51:11 +0000 |
| commit | 12c7e7b88c581c3cf8e07a85d587a6add927d750 (patch) | |
| tree | 97e3c52d3ec16a4fea87d582b74c2fa07a602a31 /roundcubemail/SQL/mysql.initial.sql | |
| parent | a6bf50cf3e8d9d49516242947619c97806c30d56 (diff) | |
Finalized new message parsing. Attention: changes in database schema
git-svn-id: https://svn.roundcube.net/trunk@325 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.initial.sql')
| -rw-r--r-- | roundcubemail/SQL/mysql.initial.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roundcubemail/SQL/mysql.initial.sql b/roundcubemail/SQL/mysql.initial.sql index 7546e52da..716268b1a 100644 --- a/roundcubemail/SQL/mysql.initial.sql +++ b/roundcubemail/SQL/mysql.initial.sql @@ -1,5 +1,5 @@ -- RoundCube Webmail initial database structure --- Version 0.1beta2 +-- Version 0.1-beta2 -- -- -------------------------------------------------------- @@ -116,12 +116,12 @@ CREATE TABLE `messages` ( `date` datetime NOT NULL default '0000-00-00 00:00:00', `size` int(11) unsigned NOT NULL default '0', `headers` text NOT NULL, - `body` longtext, + `structure` text, PRIMARY KEY (`message_id`), KEY `user_id` (`user_id`), - KEY `cache_key` (`cache_key`), KEY `idx` (`idx`), - KEY `uid` (`uid`) + KEY `uid` (`uid`), + UNIQUE `uniqueness` (`cache_key`, `uid`) ); |
