Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class rsi_001_install extends migration |
||
22 | { |
||
23 | static public function depends_on() |
||
26 | } |
||
27 | |||
28 | public function update_schema() |
||
29 | { |
||
30 | return [ |
||
31 | 'add_columns' => [ |
||
32 | $this->table_prefix . 'forums' => [ |
||
33 | 'dark1_rsi_f_enable' => ['TINT:1', 0], |
||
34 | ], |
||
35 | ], |
||
36 | ]; |
||
37 | } |
||
38 | |||
39 | public function revert_schema() |
||
45 | ], |
||
46 | ], |
||
50 |