Commit 27a65ac0 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge branch 'DBAL-658' into 2.4

parents 7af248c6 4d7411a7
...@@ -1284,7 +1284,7 @@ abstract class AbstractPlatform ...@@ -1284,7 +1284,7 @@ abstract class AbstractPlatform
if ($this->supportsCommentOnStatement()) { if ($this->supportsCommentOnStatement()) {
foreach ($table->getColumns() as $column) { foreach ($table->getColumns() as $column) {
if ($this->getColumnComment($column)) { if ($this->getColumnComment($column)) {
$sql[] = $this->getCommentOnColumnSQL($tableName, $column->getName(), $this->getColumnComment($column)); $sql[] = $this->getCommentOnColumnSQL($tableName, $column->getQuotedName($this), $this->getColumnComment($column));
} }
} }
} }
......
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