Commit 79e04e98 authored by Benjamin Eberlei's avatar Benjamin Eberlei

DDC-1119 - Remove call to not existing function.

parent a5799c4d
...@@ -407,7 +407,7 @@ class MySqlPlatform extends AbstractPlatform ...@@ -407,7 +407,7 @@ class MySqlPlatform extends AbstractPlatform
$optionStrings = array(); $optionStrings = array();
if (isset($options['comment'])) { if (isset($options['comment'])) {
$optionStrings['comment'] = 'COMMENT = ' . $this->quote($options['comment'], 'text'); $optionStrings['comment'] = 'COMMENT = ' . $options['comment'];
} }
if (isset($options['charset'])) { if (isset($options['charset'])) {
$optionStrings['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset']; $optionStrings['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset'];
......
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