1 | <?php |
||
13 | class m13_content_only 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 ad_content_only 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 ad_content_only from ads table |
||
58 | * |
||
59 | * @return array Array of table schema |
||
60 | * @access public |
||
61 | */ |
||
62 | public function revert_schema() |
||
77 | } |
||
78 |