Unverified Commit 2c2169e0 authored by belgattitude's avatar belgattitude Committed by Luís Cobucci

@morozov review: According to MySqlPlatform::getListTableColumnsSQL(), the...

@morozov review: According to MySqlPlatform::getListTableColumnsSQL(), the default column is always selected. Removed ??
parent 6b9ead7f
...@@ -178,7 +178,7 @@ class MySqlSchemaManager extends AbstractSchemaManager ...@@ -178,7 +178,7 @@ class MySqlSchemaManager extends AbstractSchemaManager
} }
if ($this->_platform instanceof MariaDb102Platform) { if ($this->_platform instanceof MariaDb102Platform) {
$columnDefault = $this->getMariaDb1027ColumnDefault($this->_platform, $tableColumn['default'] ?? null); $columnDefault = $this->getMariaDb1027ColumnDefault($this->_platform, $tableColumn['default']);
} else { } else {
$columnDefault = (isset($tableColumn['default'])) ? $tableColumn['default'] : null; $columnDefault = (isset($tableColumn['default'])) ? $tableColumn['default'] : null;
} }
......
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