Commit e0e599f9 authored by beberlei's avatar beberlei

DBAL-14 - Fix for Engine Parameter in MySQL Platform

parent 8b5f4ccd
......@@ -389,7 +389,7 @@ class MySqlPlatform extends AbstractPlatform
// get the type of the table
if (isset($options['engine'])) {
$optionStrings[] = 'ENGINE = ' . $engine;
$optionStrings[] = 'ENGINE = ' . $options['engine'];
} else {
// default to innodb
$optionStrings[] = 'ENGINE = InnoDB';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment