summaryrefslogtreecommitdiff
path: root/SQL/mysql.update.sql
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-01-25 18:05:40 +0000
committerthomascube <thomas@roundcube.net>2006-01-25 18:05:40 +0000
commitb59474133a308182c69b2fd158b4f51aeffc87e4 (patch)
treec31c3b00732c7ad0053e228fc8d21eae33b8dfda /SQL/mysql.update.sql
parentc6e808e90c67f08a821907053a83013a9213a021 (diff)
Add created date to message cache
Diffstat (limited to 'SQL/mysql.update.sql')
-rw-r--r--SQL/mysql.update.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql
index 08ce92019..e140a94a3 100644
--- a/SQL/mysql.update.sql
+++ b/SQL/mysql.update.sql
@@ -48,3 +48,10 @@ CREATE TABLE `messages` (
KEY `idx` (`idx`),
KEY `uid` (`uid`)
) TYPE=MyISAM;
+
+
+
+-- RoundCube Webmail update script for MySQL databases
+-- Version 0.1-20051216
+
+ALTER TABLE `messages` ADD `created` DATETIME NOT NULL AFTER `cache_key` ;