diff options
author | thomascube <thomas@roundcube.net> | 2007-03-18 17:11:43 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-03-18 17:11:43 +0000 |
commit | 43a42dcf405c1667f0f39150ffaa8bbda7d9d1a0 (patch) | |
tree | 0b9a855683c47e3b27da1e2634ea496a5ee7df20 /SQL/mysql.update.sql | |
parent | 87b280e94be4d4389ef660ab60d0484361599d35 (diff) |
Use user_id for unique key in messages table (closes #1484074)
Diffstat (limited to 'SQL/mysql.update.sql')
-rw-r--r-- | SQL/mysql.update.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index 308083279..ef5f07d83 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -5,7 +5,7 @@ ALTER TABLE `messages` DROP `body`, DROP INDEX `cache_key`, ADD `structure` TEXT, - ADD UNIQUE `uniqueness` (`cache_key`, `uid`); + ADD UNIQUE `uniqueness` (`user_id`, `cache_key`, `uid`); ALTER TABLE `identities` ADD `html_signature` tinyint(1) default 0 NOT NULL; |