summaryrefslogtreecommitdiff
path: root/SQL/postgres.update.sql
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-09-07 12:40:05 +0000
committeralecpl <alec@alec.pl>2009-09-07 12:40:05 +0000
commit3d601d267dfb0ffca32ad953f36944b83910d907 (patch)
treef61fe2196a5a60efc483df9c4acdcf92bf5e6770 /SQL/postgres.update.sql
parenteb4b147badf67f7ddad520ec8be736333c930686 (diff)
- added index in messages table
Diffstat (limited to 'SQL/postgres.update.sql')
-rw-r--r--SQL/postgres.update.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql
index a29558e66..6aba9b6a1 100644
--- a/SQL/postgres.update.sql
+++ b/SQL/postgres.update.sql
@@ -36,3 +36,7 @@ ALTER TABLE identities ALTER del TYPE smallint;
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);