| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function up() |
||
| 21 | { |
||
| 22 | $this->info( 'Remove text indexes with siteid column first', 'vv' ); |
||
| 23 | |||
| 24 | $this->db( 'db-text' ) |
||
| 25 | ->dropIndex( 'mshop_text', 'idx_mstex_sid_domain_status' ) |
||
| 26 | ->dropIndex( 'mshop_text', 'idx_mstex_sid_domain_langid' ) |
||
| 27 | ->dropIndex( 'mshop_text', 'idx_mstex_sid_dom_label' ) |
||
| 28 | ->dropIndex( 'mshop_text_type', 'unq_mstexty_sid_dom_code' ) |
||
| 29 | ->dropIndex( 'mshop_text_type', 'idx_mstexty_sid_status_pos' ) |
||
| 30 | ->dropIndex( 'mshop_text_type', 'idx_mstexty_sid_label' ) |
||
| 31 | ->dropIndex( 'mshop_text_type', 'idx_mstexty_sid_code' ) |
||
| 32 | ->dropIndex( 'mshop_text_list', 'unq_mstexli_pid_dm_sid_ty_rid' ) |
||
| 33 | ->dropIndex( 'mshop_text_list_type', 'unq_mstexlity_sid_dom_code' ) |
||
| 34 | ->dropIndex( 'mshop_text_list_type', 'idx_mstexlity_sid_status_pos' ) |
||
| 35 | ->dropIndex( 'mshop_text_list_type', 'idx_mstexlity_sid_label' ) |
||
| 36 | ->dropIndex( 'mshop_text_list_type', 'idx_mstexlity_sid_code' ); |
||
| 37 | } |
||
| 39 |