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