diff options
author | alecpl <alec@alec.pl> | 2011-03-10 12:30:42 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-03-10 12:30:42 +0000 |
commit | 8381ec1254f816bea2a5e85acb0a54722d327a60 (patch) | |
tree | e82c39cf41f4e629a7b0dccc6569e0723aeb0116 /SQL/postgres.update.sql | |
parent | 32c8ba67ca5215bff29caa70bab95822a2573515 (diff) |
- Force names of unique constraints in PostgreSQL DDL (postgres 9.x uses different naming convention than older versions)
Diffstat (limited to 'SQL/postgres.update.sql')
-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 91c32f8ec..d20b1ae2c 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -85,7 +85,7 @@ ALTER TABLE users ALTER last_login SET DEFAULT NULL; -- Updates from version 0.4.2 DROP INDEX users_username_id_idx; -ALTER TABLE users ADD UNIQUE (username, mail_host); +ALTER TABLE users ADD CONSTRAINT users_username_key UNIQUE (username, mail_host); ALTER TABLE contacts ALTER email TYPE varchar(255); TRUNCATE messages; |