diff options
author | thomascube <thomas@roundcube.net> | 2005-11-06 23:04:27 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-11-06 23:04:27 +0000 |
commit | e447cb072f025f1b0af9fea091a316e11163119d (patch) | |
tree | 2d180e3217f17f1031e338d6f47e1786a90545d5 | |
parent | b4a9999f9c72377382b123f70217f46451c22253 (diff) |
Added 'changed' col to contacts table and support for 160-bit session hashes
-rw-r--r-- | SQL/mysql.initial.sql | 1 |
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 '', |