summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/sqlite.update.sql
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-21 18:19:30 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-21 18:19:30 +0000
commite00d46500c4740745ef34e70f5db783fae0a291c (patch)
tree32490e1b94aae3024dc621817c95f0b35423506b /roundcubemail/SQL/sqlite.update.sql
parentc8fb75d8b8c4b52b2460e71b91146cbcb579410a (diff)
- Increase speed of session destroy and garbage clean up
- Fix session timeout when DB server got clock skew (#1485490) git-svn-id: https://svn.roundcube.net/trunk@2076 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/sqlite.update.sql')
-rw-r--r--roundcubemail/SQL/sqlite.update.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/roundcubemail/SQL/sqlite.update.sql b/roundcubemail/SQL/sqlite.update.sql
index accf64a73..26dc00f4f 100644
--- a/roundcubemail/SQL/sqlite.update.sql
+++ b/roundcubemail/SQL/sqlite.update.sql
@@ -29,3 +29,7 @@ CREATE INDEX ix_users_alias ON users(alias);
-- Updates from version 0.2-alpha
CREATE INDEX ix_messages_created ON messages (created);
+
+-- Updates from version 0.2-beta
+
+CREATE INDEX ix_session_changed ON session (changed);