| 1 | <?php |
||
| 13 | class m13_hide_on_noncontent_pages extends \phpbb\db\migration\migration |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritDoc} |
||
| 17 | */ |
||
| 18 | public function effectively_installed() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritDoc} |
||
| 25 | */ |
||
| 26 | public static function depends_on() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Add the hide-on-noncontent to ads table |
||
| 36 | * |
||
| 37 | * @return array Array of table schema |
||
| 38 | * @access public |
||
| 39 | */ |
||
| 40 | public function update_schema() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Drop the hide-on-noncontent from ads table |
||
| 58 | * |
||
| 59 | * @return array Array of table schema |
||
| 60 | * @access public |
||
| 61 | */ |
||
| 62 | public function revert_schema() |
||
| 77 | } |
||
| 78 |