summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/postgres.update.sql
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-07 12:40:05 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-07 12:40:05 +0000
commit0618dc9a521d74097207c58f58bb2632aa7b17d5 (patch)
treee8bd3bb212d209855331f7b4c594597e5c08bfd2 /roundcubemail/SQL/postgres.update.sql
parent065964c07ca4949156073ff8cfeb6310702465be (diff)
- added index in messages table
git-svn-id: https://svn.roundcube.net/trunk@2931 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/postgres.update.sql')
-rw-r--r--roundcubemail/SQL/postgres.update.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/roundcubemail/SQL/postgres.update.sql b/roundcubemail/SQL/postgres.update.sql
index a29558e66..6aba9b6a1 100644
--- a/roundcubemail/SQL/postgres.update.sql
+++ b/roundcubemail/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);