| 1 | <?php |
||
| 13 | class m4_indexes extends \phpbb\db\migration\migration |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritDoc} |
||
| 17 | */ |
||
| 18 | public function effectively_installed() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritDoc} |
||
| 25 | */ |
||
| 26 | static public function depends_on() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Add the indexes |
||
| 36 | * |
||
| 37 | * @return array Array of altered table schema |
||
| 38 | * @access public |
||
| 39 | */ |
||
| 40 | public function update_schema() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Drop the indexes |
||
| 56 | * |
||
| 57 | * @return array Array of altered table schema |
||
| 58 | * @access public |
||
| 59 | */ |
||
| 60 | public function revert_schema() |
||
| 73 | } |
||
| 74 |