Fix #128 (Remove MyISAM engine) from migration scripts

(cherry picked from commit 2c09b0ae86)
This commit is contained in:
slawkens
2020-06-01 09:47:53 +02:00
parent 6b49ecc99a
commit a0d38b1f36
5 changed files with 15 additions and 10 deletions

View File

@@ -12,8 +12,9 @@ CREATE TABLE `myaac_menu`
`ordering` INT(11) NOT NULL DEFAULT 0,
`enabled` INT(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE = MyISAM;");
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
");
$db->query("
/* MENU_CATEGORY_NEWS kathrine */
INSERT INTO `myaac_menu` (`template`, `name`, `link`, `category`, `ordering`) VALUES ('kathrine', 'Latest News', 'news', 1, 0);