diff options
author | alecpl <alec@alec.pl> | 2011-12-19 07:27:27 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-19 07:27:27 +0000 |
commit | 5f481d1f0ce4bf9f0b9aa167a6579c02b0aa9d64 (patch) | |
tree | 11f3417cccd46cb34215b877adb51e4a0c655a8c | |
parent | af05fecf245cc1bdeee0f6a1ee32559add539134 (diff) |
- Fix wrong postgres sequence name in upgrade from 0.6
-rw-r--r-- | SQL/postgres.update.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index c96669dc8..0db2e9ee0 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -127,7 +127,7 @@ CREATE TABLE searches ( CONSTRAINT searches_user_id_key UNIQUE (user_id, "type", name) ); -DROP SEQUENCE messages_ids; +DROP SEQUENCE message_ids; DROP TABLE messages; CREATE TABLE cache_index ( |