diff options
author | alecpl <alec@alec.pl> | 2008-11-21 14:33:58 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-21 14:33:58 +0000 |
commit | be7d3b6918ff90757d10804ac914edb5a65f4828 (patch) | |
tree | abc0e0ab2a4876a05692503d748f3370e8999aa2 /SQL/postgres.update.sql | |
parent | bd0c2b0a341c5440c66f9b0e9d2ad2b869401f03 (diff) |
- Fix 'cache' table cleanup on session destroy (#1485516)
Diffstat (limited to 'SQL/postgres.update.sql')
-rw-r--r-- | SQL/postgres.update.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index dfc282b4a..fdd7f0f5e 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -21,3 +21,9 @@ ALTER TABLE cache ADD FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE -- Updates from version 0.2-alpha CREATE INDEX messages_created_idx ON messages (created); + +-- Updates from version 0.2-beta + +ALTER TABLE cache DROP CONSTRAINT cache_session_id_fkey; +ALTER TABLE cache ADD FOREIGN KEY (session_id) REFERENCES session(sess_id) ON DELETE CASCADE ON UPDATE CASCADE; +CREATE INDEX cache_session_id_idx ON "cache" (session_id); |