1 | <?php |
||
16 | class m1_initial_schema extends \phpbb\db\migration\migration |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritDoc} |
||
20 | */ |
||
21 | public function effectively_installed() |
||
25 | |||
26 | /** |
||
27 | * {@inheritDoc} |
||
28 | */ |
||
29 | static public function depends_on() |
||
33 | |||
34 | /** |
||
35 | * Add the ads table schema to the database: |
||
36 | * ads: |
||
37 | * ad_id |
||
38 | * ad_name |
||
39 | * ad_note |
||
40 | * ad_code |
||
41 | * ad_enabled |
||
42 | * |
||
43 | * @return array Array of table schema |
||
44 | * @access public |
||
45 | */ |
||
46 | public function update_schema() |
||
63 | |||
64 | /** |
||
65 | * Drop the ads table schema from the database |
||
66 | * |
||
67 | * @return array Array of table schema |
||
68 | * @access public |
||
69 | */ |
||
70 | public function revert_schema() |
||
78 | } |
||
79 |