diff options
author | alecpl <alec@alec.pl> | 2009-09-07 12:40:05 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-07 12:40:05 +0000 |
commit | 3d601d267dfb0ffca32ad953f36944b83910d907 (patch) | |
tree | f61fe2196a5a60efc483df9c4acdcf92bf5e6770 /SQL/postgres.update.sql | |
parent | eb4b147badf67f7ddad520ec8be736333c930686 (diff) |
- added index in messages table
Diffstat (limited to 'SQL/postgres.update.sql')
-rw-r--r-- | 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 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); |