From 41b43ba00e9110e6f415014382e11af7fe381fcb Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 28 Nov 2008 14:01:35 -0500 Subject: [PATCH] Don't set client busy when automatically checking for new messages (#1485276) --- SQL/postgres.update.sql | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index dfc282b..5dae5a2 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -21,3 +21,13 @@ -- Updates from version 0.2-alpha CREATE INDEX messages_created_idx ON messages (created); + +-- Updates from version 0.2-beta + +ALTER TABLE cache DROP session_id; + +CREATE INDEX session_changed_idx ON session (changed); +CREATE INDEX cache_created_idx ON "cache" (created); + +ALTER TABLE users ALTER "language" DROP NOT NULL; +ALTER TABLE users ALTER "language" DROP DEFAULT; -- Gitblit v1.9.1