| @@ 483-493 (lines=11) @@ | ||
| 480 | /** |
|
| 481 | * {@inheritdoc} |
|
| 482 | */ |
|
| 483 | protected function getAddColumnInstructions(Table $table, Column $column) |
|
| 484 | { |
|
| 485 | $alter = sprintf( |
|
| 486 | 'ALTER TABLE %s ADD %s %s', |
|
| 487 | $table->getName(), |
|
| 488 | $this->quoteColumnName($column->getName()), |
|
| 489 | $this->getColumnSqlDefinition($column) |
|
| 490 | ); |
|
| 491 | ||
| 492 | return new AlterInstructions([], [$alter]); |
|
| 493 | } |
|
| 494 | ||
| 495 | /** |
|
| 496 | * {@inheritdoc} |
|
| @@ 577-587 (lines=11) @@ | ||
| 574 | /** |
|
| 575 | * {@inheritdoc} |
|
| 576 | */ |
|
| 577 | protected function getAddColumnInstructions(Table $table, Column $column) |
|
| 578 | { |
|
| 579 | $alter = sprintf( |
|
| 580 | 'ALTER TABLE %s ADD COLUMN %s %s', |
|
| 581 | $this->quoteTableName($table->getName()), |
|
| 582 | $this->quoteColumnName($column->getName()), |
|
| 583 | $this->getColumnSqlDefinition($column) |
|
| 584 | ); |
|
| 585 | ||
| 586 | return new AlterInstructions([], [$alter]); |
|
| 587 | } |
|
| 588 | ||
| 589 | /** |
|
| 590 | * Returns the original CREATE statement for the give table |
|