1 | <?php |
||
13 | class m9_views_clicks 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() |
||
36 | |||
37 | /** |
||
38 | * Add the views and clicks to ads table |
||
39 | * |
||
40 | * @return array Array of table schema |
||
41 | * @access public |
||
42 | */ |
||
43 | public function update_schema() |
||
56 | |||
57 | /** |
||
58 | * Drop the views and clicks from ads table |
||
59 | * |
||
60 | * @return array Array of table schema |
||
61 | * @access public |
||
62 | */ |
||
63 | public function revert_schema() |
||
76 | } |
||
77 |