1 | <?php |
||
17 | class MySQLHandler extends AbstractHandler |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function alterColumn( |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function dropIndex(AbstractTable $table, AbstractIndex $index) |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function alterIndex(AbstractTable $table, AbstractIndex $initial, AbstractIndex $index) |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function dropForeign(AbstractTable $table, AbstractReference $foreign) |
||
55 | |||
56 | /** |
||
57 | * Get statement needed to create table. |
||
58 | * |
||
59 | * @param AbstractTable $table |
||
60 | * |
||
61 | * @return string |
||
62 | * |
||
63 | * @throws SchemaException |
||
64 | */ |
||
65 | protected function createStatement(AbstractTable $table) |
||
73 | } |