| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function update_schema() |
||
| 39 | { |
||
| 40 | return array( |
||
| 41 | 'add_tables' => array( |
||
| 42 | $this->table_prefix . 'sm_cblocks' => array( |
||
| 43 | 'COLUMNS' => array( |
||
| 44 | 'block_id' => array('UINT', null, 'auto_increment'), |
||
| 45 | 'block_content' => array('TEXT_UNI', ''), |
||
| 46 | 'bbcode_bitfield' => array('VCHAR:255', ''), |
||
| 47 | 'bbcode_options' => array('UINT:11', 7), |
||
| 48 | 'bbcode_uid' => array('VCHAR:8', ''), |
||
| 49 | ), |
||
| 50 | |||
| 51 | 'PRIMARY_KEY' => 'block_id' |
||
| 52 | ), |
||
| 69 |