| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 52 | public function revert_schema() |
||
| 53 | { |
||
| 54 | return array( |
||
| 55 | 'add_columns' => array( |
||
| 56 | $this->table_prefix . 'sm_content_types' => array( |
||
| 57 | 'show_poster_info' => array('BOOL', 1), |
||
| 58 | 'show_poster_contents' => array('BOOL', 1), |
||
| 59 | ), |
||
| 60 | ), |
||
| 61 | 'drop_columns' => array( |
||
| 62 | $this->table_prefix . 'sm_content_types' => array( |
||
| 63 | 'topic_blocks', |
||
| 64 | ), |
||
| 69 |