From 6ae6e41fb32ca544ed29681d18130ba2c9c344fd Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 17 May 2007 16:15:24 -0400 Subject: [PATCH] Updated description files and version info --- SQL/mysql.initial.sql | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql index 9e3ee27..4a92734 100644 --- a/SQL/mysql.initial.sql +++ b/SQL/mysql.initial.sql @@ -1,5 +1,5 @@ -- RoundCube Webmail initial database structure --- Version 0.1b +-- Version 0.1-rc1 -- -- -------------------------------------------------------- @@ -58,6 +58,7 @@ `reply-to` varchar(128) NOT NULL default '', `bcc` varchar(128) NOT NULL default '', `signature` text NOT NULL, + `html_signature` tinyint(1) NOT NULL default '0', PRIMARY KEY (`identity_id`), KEY `user_id` (`user_id`) ); @@ -116,12 +117,12 @@ `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` (`user_id`, `cache_key`, `uid`) ); -- Gitblit v1.9.1