| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | public function update_schema() |
||
| 42 | { |
||
| 43 | return array( |
||
| 44 | 'add_tables' => array( |
||
| 45 | $this->table_prefix . 'ad_locations' => array( |
||
| 46 | 'COLUMNS' => array( |
||
| 47 | 'ad_id' => array('UINT', 0), |
||
| 48 | 'location_id' => array('VCHAR:255', ''), |
||
| 49 | ), |
||
| 50 | 'PRIMARY_KEY' => array('ad_id', 'location_id'), |
||
| 51 | ), |
||
| 52 | ), |
||
| 53 | ); |
||
| 54 | } |
||
| 55 | |||
| 71 |