| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function up() |
||
| 21 | { |
||
| 22 | $this->info( 'Remove review indexes with siteid column first', 'vv' ); |
||
| 23 | |||
| 24 | $this->db( 'db-review' ) |
||
| 25 | ->dropIndex( 'mshop_review', 'unq_msrev_sid_cid_dom_rid' ) |
||
| 26 | ->dropIndex( 'mshop_review', 'idx_msrev_sid_dom_rid_sta_ct' ) |
||
| 27 | ->dropIndex( 'mshop_review', 'idx_msrev_sid_dom_rid_sta_rate' ) |
||
| 28 | ->dropIndex( 'mshop_review', 'idx_msrev_sid_dom_cid_mt' ) |
||
| 29 | ->dropIndex( 'mshop_review', 'idx_msrev_sid_rate_dom' ); |
||
| 30 | } |
||
| 32 |