Skip to content

Commit

Permalink
- Added warning about tables engine, per discussion in #1486794
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Sep 14, 2010
1 parent cb3dfdf commit fc55295
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SQL/mysql.update.sql
Expand Up @@ -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`;
Expand All @@ -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 */;
Expand Down

0 comments on commit fc55295

Please sign in to comment.