Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function update_schema() |
||
33 | { |
||
34 | return array( |
||
35 | 'add_columns' => array( |
||
36 | $this->table_prefix . 'sm_content_types' => array( |
||
37 | 'topic_blocks' => array('VCHAR:255', '', 'after' => 'content_view_settings'), |
||
38 | ), |
||
39 | ), |
||
40 | 'drop_columns' => array( |
||
41 | $this->table_prefix . 'sm_content_types' => array( |
||
42 | 'show_poster_info', |
||
43 | 'show_poster_contents', |
||
44 | ), |
||
69 |