diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-14 06:28:43 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-14 06:28:43 +0000 |
| commit | 138dd8ede15914e16ceec0b230c1eb30c2371455 (patch) | |
| tree | 996f754fab488abcf17b0b7e8967f47abe1b6330 /roundcubemail/SQL/mysql.update.sql | |
| parent | 95b141f39fc76613d08fd082426bbd7449a2e2e9 (diff) | |
- Added warning about tables engine, per discussion in #1486794
git-svn-id: https://svn.roundcube.net/trunk@3961 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.update.sql')
| -rw-r--r-- | roundcubemail/SQL/mysql.update.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/SQL/mysql.update.sql b/roundcubemail/SQL/mysql.update.sql index 23fcad838..739a3d801 100644 --- a/roundcubemail/SQL/mysql.update.sql +++ b/roundcubemail/SQL/mysql.update.sql @@ -53,7 +53,6 @@ ALTER TABLE `users` ENGINE=InnoDB; ALTER TABLE `contacts` ENGINE=InnoDB; ALTER TABLE `identities` ENGINE=InnoDB; - -- Updates from version 0.3-stable TRUNCATE `messages`; @@ -68,6 +67,8 @@ ALTER TABLE `contacts` ADD INDEX `user_contacts_index` (`user_id`,`email`); -- Updates from version 0.3.1 +-- WARNING: Make sure that all tables are using InnoDB engine!!! +-- If not, use: ALTER TABLE xxx ENGINE=InnoDB; /* MySQL bug workaround: http://bugs.mysql.com/bug.php?id=46293 */ /*!40014 SET FOREIGN_KEY_CHECKS=0 */; |
