1 | <?php |
||
18 | class MySQLHandler extends AbstractHandler |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function alterColumn( |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function dropIndex(AbstractTable $table, AbstractIndex $index) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function alterIndex(AbstractTable $table, AbstractIndex $initial, AbstractIndex $index) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function dropForeign(AbstractTable $table, AbstractReference $foreign) |
||
56 | |||
57 | /** |
||
58 | * Get statement needed to create table. |
||
59 | * |
||
60 | * @param AbstractTable $table |
||
61 | * |
||
62 | * @return string |
||
63 | * |
||
64 | * @throws SchemaException |
||
65 | */ |
||
66 | protected function createStatement(AbstractTable $table) |
||
74 | |||
75 | /** |
||
76 | * @param AbstractColumn $column |
||
77 | * |
||
78 | * @throws MySQLDriverException |
||
79 | */ |
||
80 | protected function assertValid(AbstractColumn $column) |
||
91 | } |