Skip to content

Commit

Permalink
Revert "Revert "Use quoted column identifier for adding comment to co…
Browse files Browse the repository at this point in the history
…lumn""

This reverts commit 3ee3047.
  • Loading branch information
DeepDiver1975 committed Jan 20, 2014
1 parent faeedfc commit 7c2c94c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ public function getCreateTableSQL(Table $table, $createFlags = self::CREATE_INDE
if ($this->supportsCommentOnStatement()) {
foreach ($table->getColumns() as $column) {
if ($this->getColumnComment($column)) {
$sql[] = $this->getCommentOnColumnSQL($tableName, $column->getName(), $this->getColumnComment($column));
$sql[] = $this->getCommentOnColumnSQL($tableName, $column->getQuotedName($this), $this->getColumnComment($column));
}
}
}
Expand Down

0 comments on commit 7c2c94c

Please sign in to comment.