Skip to content

Commit

Permalink
Merge pull request mozilla#469 from clouserw/804136-kill-myisam
Browse files Browse the repository at this point in the history
myisam -> innodb; bug 804136
  • Loading branch information
clouserw committed Oct 22, 2012
2 parents d7608e9 + bb9a948 commit 44e28df
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions migrations/491-finish-off-myisam.sql
@@ -0,0 +1,13 @@
-- Convert the last of our myisam tables to innodb. bug 804136

ALTER TABLE addons_dependencies engine=InnoDB;
ALTER TABLE appsupport engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE discovery_modules engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE email_preview engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE featured_collections engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE file_validation engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE schema_version engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE validation_job engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE validation_result engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE zadmin_siteevent engine=InnoDB, CONVERT TO CHARSET utf8;
ALTER TABLE zadmin_siteevent_mkt engine=InnoDB, CONVERT TO CHARSET utf8;

0 comments on commit 44e28df

Please sign in to comment.