From b4cc1c43649302683aeb406c80fe8566f383d959 Mon Sep 17 00:00:00 2001 From: alec Date: Thu, 10 Mar 2011 12:30:42 +0000 Subject: - Force names of unique constraints in PostgreSQL DDL (postgres 9.x uses different naming convention than older versions) git-svn-id: https://svn.roundcube.net/trunk@4603 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/SQL/postgres.update.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/SQL/postgres.update.sql') diff --git a/roundcubemail/SQL/postgres.update.sql b/roundcubemail/SQL/postgres.update.sql index 91c32f8ec..d20b1ae2c 100644 --- a/roundcubemail/SQL/postgres.update.sql +++ b/roundcubemail/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; -- cgit v1.2.3