1 | <?php |
||
8 | class DropColumnCommand extends Command |
||
9 | { |
||
10 | private $column; |
||
11 | |||
12 | /** |
||
13 | * Set column to drop from a table. |
||
14 | * |
||
15 | * @param Column $column Column instance. |
||
16 | * |
||
17 | * @return DropColumnCommand Self. |
||
18 | */ |
||
19 | public function setColumn(Column $column) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getSql() |
||
38 | } |
||
39 |