| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | public function update_schema() |
||
| 38 | { |
||
| 39 | return array( |
||
| 40 | 'add_columns' => array( |
||
| 41 | $this->table_prefix . 'ads' => array( |
||
| 42 | 'ad_priority' => array('TINT:2', 5), |
||
| 43 | ), |
||
| 44 | ), |
||
| 45 | 'add_index' => array( |
||
| 46 | $this->table_prefix . 'ads' => array( |
||
| 47 | 'ad_priority' => array('ad_priority'), // index used in ad\manager::get_ads |
||
| 48 | ), |
||
| 49 | ), |
||
| 50 | ); |
||
| 51 | } |
||
| 52 | |||
| 75 |