| Conditions | 1 |
| Paths | 1 |
| Total Lines | 33 |
| Code Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 40 | public function update_schema() |
||
| 41 | { |
||
| 42 | return array( |
||
| 43 | 'drop_tables' => array( |
||
| 44 | $this->table_prefix . 'clicks', |
||
| 45 | ), |
||
| 46 | |||
| 47 | 'drop_keys' => array( |
||
| 48 | $this->table_prefix . 'bbcodes' => array( |
||
| 49 | 'display_order', |
||
| 50 | ), |
||
| 51 | ), |
||
| 52 | |||
| 53 | 'drop_columns' => array( |
||
| 54 | $this->table_prefix . 'users' => array( |
||
| 55 | 'user_abbcode_mod', |
||
| 56 | 'user_abbcode_compact', |
||
| 57 | ), |
||
| 58 | $this->table_prefix . 'bbcodes' => array( |
||
| 59 | 'display_on_pm', |
||
| 60 | 'display_on_sig', |
||
| 61 | 'abbcode', |
||
| 62 | 'bbcode_image', |
||
| 63 | ), |
||
| 64 | ), |
||
| 65 | |||
| 66 | 'change_columns' => array( |
||
| 67 | $this->table_prefix . 'bbcodes' => array( |
||
| 68 | 'bbcode_id' => array('USINT', 0), |
||
| 69 | ), |
||
| 70 | ), |
||
| 71 | ); |
||
| 72 | } |
||
| 73 | } |
||
| 74 |