core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DB2Platform.php 1 location
|
@@ 557-563 (lines=7) @@
|
554 |
|
|
555 |
|
$comment = $this->getColumnComment($column); |
556 |
|
|
557 |
|
if (null !== $comment && '' !== $comment) { |
558 |
|
$commentsSQL[] = $this->getCommentOnColumnSQL( |
559 |
|
$diff->getName($this)->getQuotedName($this), |
560 |
|
$column->getQuotedName($this), |
561 |
|
$comment |
562 |
|
); |
563 |
|
} |
564 |
|
} |
565 |
|
|
566 |
|
foreach ($diff->removedColumns as $column) { |
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php 1 location
|
@@ 522-528 (lines=7) @@
|
519 |
|
|
520 |
|
$comment = $this->getColumnComment($column); |
521 |
|
|
522 |
|
if (null !== $comment && '' !== $comment) { |
523 |
|
$commentsSQL[] = $this->getCommentOnColumnSQL( |
524 |
|
$diff->getName($this)->getQuotedName($this), |
525 |
|
$column->getQuotedName($this), |
526 |
|
$comment |
527 |
|
); |
528 |
|
} |
529 |
|
} |
530 |
|
|
531 |
|
foreach ($diff->removedColumns as $column) { |
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywherePlatform.php 1 location
|
@@ 160-166 (lines=7) @@
|
157 |
|
|
158 |
|
$comment = $this->getColumnComment($column); |
159 |
|
|
160 |
|
if (null !== $comment && '' !== $comment) { |
161 |
|
$commentsSQL[] = $this->getCommentOnColumnSQL( |
162 |
|
$diff->getName($this)->getQuotedName($this), |
163 |
|
$column->getQuotedName($this), |
164 |
|
$comment |
165 |
|
); |
166 |
|
} |
167 |
|
} |
168 |
|
|
169 |
|
/** @var \Doctrine\DBAL\Schema\Column $column */ |