diff options
author | alecpl <alec@alec.pl> | 2009-09-29 07:59:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-29 07:59:25 +0000 |
commit | 23b76563dcc2542cff9f447e809462472cfccd88 (patch) | |
tree | 58416e08676b468a04a21b8c2a9a945a5a60b7a9 /SQL/postgres.initial.sql | |
parent | 05d18da660b7b792ee750698b9c10ada2a60a4b5 (diff) |
- use better index for contacts table
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r-- | SQL/postgres.initial.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index f07ca3029..a52a01f91 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -110,7 +110,7 @@ CREATE TABLE contacts ( vcard text ); -CREATE INDEX contacts_user_id_idx ON contacts (user_id); +CREATE INDEX contacts_user_id_idx ON contacts (user_id, email); -- -- Sequence "cache_ids" |