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