diff options
author | thomascube <thomas@roundcube.net> | 2010-04-15 06:33:30 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-04-15 06:33:30 +0000 |
commit | a35062a1eba5c6c15f703686cd4fecc5536d74df (patch) | |
tree | bde3c4df3b2cc4073cd6c2b4a6af0f8700f17305 /SQL/sqlite.update.sql | |
parent | 58892824a6ee7f9a545372730b615ec9abafbe5c (diff) |
Always set changed date when marking a DB record as deleted + provide a cleanup script
Diffstat (limited to 'SQL/sqlite.update.sql')
-rw-r--r-- | SQL/sqlite.update.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SQL/sqlite.update.sql b/SQL/sqlite.update.sql index 1011f52c2..dd2887ca2 100644 --- a/SQL/sqlite.update.sql +++ b/SQL/sqlite.update.sql @@ -48,6 +48,8 @@ CREATE INDEX ix_contacts_user_id ON contacts(user_id, email); DROP INDEX ix_identities_user_id; CREATE INDEX ix_identities_user_id ON identities (user_id, del); +ALTER TABLE identities ADD COLUMN changed datetime NOT NULL default '0000-00-00 00:00:00'; + CREATE TABLE contactgroups ( contactgroup_id integer NOT NULL PRIMARY KEY, user_id integer NOT NULL default '0', |