From 3d601d267dfb0ffca32ad953f36944b83910d907 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 07 Sep 2009 08:40:05 -0400 Subject: [PATCH] - added index in messages table --- SQL/postgres.update.sql | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index a29558e..6aba9b6 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -36,3 +36,7 @@ ALTER TABLE identities ALTER standard TYPE smallint; ALTER TABLE contacts ALTER del TYPE smallint; ALTER TABLE messages ALTER del TYPE smallint; + +-- Updates from version 0.3-stable + +CREATE INDEX messages_index_idx ON messages (user_id, cache_key, idx); -- Gitblit v1.9.1