|
@@ 791-797 (lines=7) @@
|
| 788 |
|
} |
| 789 |
|
|
| 790 |
|
$fields[] = $this->getColumnDeclarationSQL($column->getQuotedName($this), $column->toArray()); |
| 791 |
|
if ($comment = $this->getColumnComment($column)) { |
| 792 |
|
$commentsSQL[] = $this->getCommentOnColumnSQL( |
| 793 |
|
$diff->getName($this)->getQuotedName($this), |
| 794 |
|
$column->getQuotedName($this), |
| 795 |
|
$comment |
| 796 |
|
); |
| 797 |
|
} |
| 798 |
|
} |
| 799 |
|
|
| 800 |
|
if (count($fields)) { |
|
@@ 838-844 (lines=7) @@
|
| 835 |
|
$fields[] = $column->getQuotedName($this) . $this->getColumnDeclarationSQL('', $columnInfo); |
| 836 |
|
} |
| 837 |
|
|
| 838 |
|
if ($columnHasChangedComment) { |
| 839 |
|
$commentsSQL[] = $this->getCommentOnColumnSQL( |
| 840 |
|
$diff->getName($this)->getQuotedName($this), |
| 841 |
|
$column->getQuotedName($this), |
| 842 |
|
$this->getColumnComment($column) |
| 843 |
|
); |
| 844 |
|
} |
| 845 |
|
} |
| 846 |
|
|
| 847 |
|
if (count($fields)) { |