Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
49 | public function revert_schema() |
||
50 | { |
||
51 | return array( |
||
52 | 'add_columns' => array( |
||
53 | $this->table_prefix . 'sm_content_types' => array( |
||
54 | 'allow_comments' => array('BOOL', 1, 'after' => 'req_approval'), |
||
55 | ), |
||
56 | ), |
||
57 | 'drop_columns' => array( |
||
58 | $this->table_prefix . 'sm_content_types' => array( |
||
59 | 'comments', |
||
60 | 'comments_settings', |
||
61 | ), |
||
66 |