diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-03-10 12:30:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-03-10 12:30:42 +0000 |
| commit | b4cc1c43649302683aeb406c80fe8566f383d959 (patch) | |
| tree | 7e3c77fd41a4313a4c83cbf6ce869c8d6ec3f61b /roundcubemail/SQL/postgres.initial.sql | |
| parent | a14612b230c7ce0753d4879808b3bc443a2fd484 (diff) | |
- 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
Diffstat (limited to 'roundcubemail/SQL/postgres.initial.sql')
| -rw-r--r-- | roundcubemail/SQL/postgres.initial.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/SQL/postgres.initial.sql b/roundcubemail/SQL/postgres.initial.sql index b273bcb0b..5350e791f 100644 --- a/roundcubemail/SQL/postgres.initial.sql +++ b/roundcubemail/SQL/postgres.initial.sql @@ -25,7 +25,7 @@ CREATE TABLE users ( last_login timestamp with time zone DEFAULT NULL, "language" varchar(5), preferences text DEFAULT ''::text NOT NULL, - UNIQUE (username, mail_host) + CONSTRAINT users_username_key UNIQUE (username, mail_host) ); CREATE INDEX users_alias_id_idx ON users (alias); @@ -220,7 +220,7 @@ CREATE TABLE messages ( size integer DEFAULT 0 NOT NULL, headers text NOT NULL, structure text, - UNIQUE (user_id, cache_key, uid) + CONSTRAINT messages_user_id_key UNIQUE (user_id, cache_key, uid) ); CREATE INDEX messages_index_idx ON messages (user_id, cache_key, idx); |
