| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function up() |
||
| 21 | { |
||
| 22 | $this->info( 'Remove plugin indexes with siteid column first', 'vv' ); |
||
| 23 | |||
| 24 | $this->db( 'db-plugin' ) |
||
| 25 | ->dropIndex( 'mshop_plugin', 'unq_msplu_sid_ty_prov' ) |
||
| 26 | ->dropIndex( 'mshop_plugin', 'idx_msplu_sid_prov' ) |
||
| 27 | ->dropIndex( 'mshop_plugin', 'idx_msplu_sid_status' ) |
||
| 28 | ->dropIndex( 'mshop_plugin', 'idx_msplu_sid_label' ) |
||
| 29 | ->dropIndex( 'mshop_plugin', 'idx_msplu_sid_pos' ) |
||
| 30 | ->dropIndex( 'mshop_plugin_type', 'unq_mspluty_sid_dom_code' ) |
||
| 31 | ->dropIndex( 'mshop_plugin_type', 'idx_mspluty_sid_status_pos' ) |
||
| 32 | ->dropIndex( 'mshop_plugin_type', 'idx_mspluty_sid_label' ) |
||
| 33 | ->dropIndex( 'mshop_plugin_type', 'idx_mspluty_sid_code' ); |
||
| 34 | } |
||
| 36 |