diff options
author | thomascube <thomas@roundcube.net> | 2006-02-04 19:08:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-02-04 19:08:10 +0000 |
commit | 58e3602a37cccab55f71fbf839b32fbc4322699c (patch) | |
tree | 4f48f72eb95d6ad7fb69ac09644e96f890bfded8 /SQL | |
parent | 76ffa2a099300325b34c92a9291dc4031b8a0d8a (diff) |
Bugfixes for encoding and sending with attachments
Diffstat (limited to 'SQL')
-rw-r--r-- | SQL/sqlite.initial.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index 147df7243..b09a3adda 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -31,7 +31,7 @@ CREATE INDEX ix_cache_session_id ON cache(session_id); CREATE TABLE contacts ( contact_id integer NOT NULL PRIMARY KEY, user_id integer NOT NULL default '0', - created datetime NOT NULL default '0000-00-00 00:00:00', + changed datetime NOT NULL default '0000-00-00 00:00:00', del tinyint NOT NULL default '0', name varchar(128) NOT NULL default '', email varchar(128) NOT NULL default '', |