1 | <?php |
||
15 | class m12_add_hidden_forum_column extends \phpbb\db\migration\migration |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Skip this migration if the hidden_forum column already exists |
||
20 | * |
||
21 | * @return bool True to skip this migration, false to run it |
||
22 | * @access public |
||
23 | */ |
||
24 | public function effectively_installed() |
||
28 | |||
29 | /** |
||
30 | * Update forums table schema |
||
31 | * |
||
32 | * @return array Array of table schema |
||
33 | * @access public |
||
34 | */ |
||
35 | public function update_schema() |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | public function update_data() |
||
55 | |||
56 | public function update_blocks_settings() |
||
64 | } |
||
65 |