From d72d411ee338ae2cca0bef2c08822b52eb72e8e5 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 02 Jun 2006 15:07:27 -0400 Subject: [PATCH] Updated Changelog --- SQL/mysql.initial.sql | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql index 21444ed..9e3ee27 100644 --- a/SQL/mysql.initial.sql +++ b/SQL/mysql.initial.sql @@ -1,5 +1,5 @@ -- RoundCube Webmail initial database structure --- Version 0.1a +-- Version 0.1b -- -- -------------------------------------------------------- @@ -19,7 +19,7 @@ KEY `user_id` (`user_id`), KEY `cache_key` (`cache_key`), KEY `session_id` (`session_id`) -) TYPE=MyISAM; +); -- -------------------------------------------------------- @@ -39,7 +39,7 @@ `vcard` text NOT NULL, PRIMARY KEY (`contact_id`), KEY `user_id` (`user_id`) -) TYPE=MyISAM; +); -- -------------------------------------------------------- @@ -60,7 +60,7 @@ `signature` text NOT NULL, PRIMARY KEY (`identity_id`), KEY `user_id` (`user_id`) -) TYPE=MyISAM; +); -- -------------------------------------------------------- @@ -75,7 +75,7 @@ `ip` VARCHAR(15) NOT NULL default '', `vars` text NOT NULL, PRIMARY KEY (`sess_id`) -) TYPE=MyISAM; +); -- -------------------------------------------------------- @@ -91,9 +91,9 @@ `created` datetime NOT NULL default '0000-00-00 00:00:00', `last_login` datetime NOT NULL default '0000-00-00 00:00:00', `language` varchar(5) NOT NULL default 'en', - `preferences` text NOT NULL, + `preferences` text NOT NULL default '', PRIMARY KEY (`user_id`) -) TYPE=MyISAM; +); -- -------------------------------------------------------- @@ -106,6 +106,7 @@ `user_id` int(11) unsigned NOT NULL default '0', `del` tinyint(1) NOT NULL default '0', `cache_key` varchar(128) NOT NULL default '', + `created` datetime NOT NULL default '0000-00-00 00:00:00', `idx` int(11) unsigned NOT NULL default '0', `uid` int(11) unsigned NOT NULL default '0', `subject` varchar(255) NOT NULL default '', @@ -121,6 +122,6 @@ KEY `cache_key` (`cache_key`), KEY `idx` (`idx`), KEY `uid` (`uid`) -) TYPE=MyISAM; +); -- Gitblit v1.9.1