diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-07 12:40:05 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-07 12:40:05 +0000 |
| commit | 0618dc9a521d74097207c58f58bb2632aa7b17d5 (patch) | |
| tree | e8bd3bb212d209855331f7b4c594597e5c08bfd2 /roundcubemail/SQL/postgres.initial.sql | |
| parent | 065964c07ca4949156073ff8cfeb6310702465be (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.initial.sql')
| -rw-r--r-- | roundcubemail/SQL/postgres.initial.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roundcubemail/SQL/postgres.initial.sql b/roundcubemail/SQL/postgres.initial.sql index 1a21ee28b..f07ca3029 100644 --- a/roundcubemail/SQL/postgres.initial.sql +++ b/roundcubemail/SQL/postgres.initial.sql @@ -174,4 +174,5 @@ CREATE TABLE messages ( ); ALTER TABLE messages ADD UNIQUE (user_id, cache_key, uid); +CREATE INDEX messages_index_idx ON messages (user_id, cache_key, idx); CREATE INDEX messages_created_idx ON messages (created); |
