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 ...@@ -389,7 +389,7 @@ class MySqlPlatform extends AbstractPlatform
// get the type of the table // get the type of the table
if (isset($options['engine'])) { if (isset($options['engine'])) {
$optionStrings[] = 'ENGINE = ' . $engine; $optionStrings[] = 'ENGINE = ' . $options['engine'];
} else { } else {
// default to innodb // default to innodb
$optionStrings[] = 'ENGINE = 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