diff options
author | alecpl <alec@alec.pl> | 2008-11-24 07:59:10 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-24 07:59:10 +0000 |
commit | e4d9f05e4126501ce329fc4c36704375f6dfe681 (patch) | |
tree | cb676b255788ddadead29dc86db32a187da5a520 /SQL/postgres.initial.sql | |
parent | ae9124d3a92e2fd1d507d9dcba49209463391ad7 (diff) |
- Added index on cache.created + small fixes in mssql DDL script
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r-- | SQL/postgres.initial.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index 9fb8d32fb..b5f7779d7 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -135,6 +135,7 @@ CREATE TABLE "cache" ( ); CREATE INDEX cache_user_id_idx ON "cache" (user_id, cache_key); +CREATE INDEX cache_created_idx ON "cache" (created); -- -- Sequence "message_ids" |