summaryrefslogtreecommitdiff
path: root/SQL
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-11-06 23:04:27 +0000
committerthomascube <thomas@roundcube.net>2005-11-06 23:04:27 +0000
commite447cb072f025f1b0af9fea091a316e11163119d (patch)
tree2d180e3217f17f1031e338d6f47e1786a90545d5 /SQL
parentb4a9999f9c72377382b123f70217f46451c22253 (diff)
Added 'changed' col to contacts table and support for 160-bit session hashes
Diffstat (limited to 'SQL')
-rw-r--r--SQL/mysql.initial.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql
index 73905cab8..09d9b8017 100644
--- a/SQL/mysql.initial.sql
+++ b/SQL/mysql.initial.sql
@@ -30,6 +30,7 @@ CREATE TABLE `cache` (
CREATE TABLE `contacts` (
`contact_id` int(10) unsigned NOT NULL auto_increment,
`user_id` int(10) unsigned NOT NULL default '0',
+ `changed` datetime NOT NULL default '0000-00-00 00:00:00',
`del` enum('0','1') NOT NULL default '0',
`name` varchar(128) NOT NULL default '',
`email` varchar(128) NOT NULL default '',