diff options
author | thomascube <thomas@roundcube.net> | 2006-08-25 11:51:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-08-25 11:51:11 +0000 |
commit | f7bfec96be8bf095ffc0af64a761f3866d5947b9 (patch) | |
tree | 93f5a01b75cb241f71ce625bbcba85a0fda52e23 /SQL/sqlite.initial.sql | |
parent | 5f56a5bfa9ecdddd8c69884a6ac25b758c2b89f3 (diff) |
Finalized new message parsing. Attention: changes in database schema
Diffstat (limited to 'SQL/sqlite.initial.sql')
-rw-r--r-- | SQL/sqlite.initial.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index ae16a31d8..4ddc40d5d 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -1,5 +1,5 @@ -- RoundCube Webmail initial database structure --- Version 0.1a +-- Version 0.1-beta2 -- -- -------------------------------------------------------- @@ -118,7 +118,7 @@ CREATE TABLE messages ( date datetime NOT NULL default '0000-00-00 00:00:00', size integer NOT NULL default '0', headers text NOT NULL, - body text + structure text ); CREATE INDEX ix_messages_user_id ON messages(user_id); |