Changeset 4603 in subversion
- Timestamp:
- Mar 10, 2011 7:30:42 AM (2 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
SQL/postgres.initial.sql (modified) (2 diffs)
-
SQL/postgres.update.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r4601 r4603 2 2 =========================== 3 3 4 - Force names of unique constraints in PostgreSQL DDL 4 5 - Add code for prevention from IMAP connection hangs when server closes socket unexpectedly 5 6 - Remove redundant DELETE query (for old session deletion) on login -
trunk/roundcubemail/SQL/postgres.initial.sql
r4567 r4603 26 26 "language" varchar(5), 27 27 preferences text DEFAULT ''::text NOT NULL, 28 UNIQUE (username, mail_host)28 CONSTRAINT users_username_key UNIQUE (username, mail_host) 29 29 ); 30 30 … … 221 221 headers text NOT NULL, 222 222 structure text, 223 UNIQUE (user_id, cache_key, uid)223 CONSTRAINT messages_user_id_key UNIQUE (user_id, cache_key, uid) 224 224 ); 225 225 -
trunk/roundcubemail/SQL/postgres.update.sql
r4573 r4603 86 86 87 87 DROP INDEX users_username_id_idx; 88 ALTER TABLE users ADD UNIQUE (username, mail_host);88 ALTER TABLE users ADD CONSTRAINT users_username_key UNIQUE (username, mail_host); 89 89 ALTER TABLE contacts ALTER email TYPE varchar(255); 90 90
Note: See TracChangeset
for help on using the changeset viewer.
