| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function up() |
||
| 21 | { |
||
| 22 | $this->info( 'Remove locale indexes with siteid column first', 'vv' ); |
||
| 23 | |||
| 24 | $this->db( 'db-locale' ) |
||
| 25 | ->dropIndex( 'mshop_locale', 'unq_msloc_sid_lang_curr' ) |
||
| 26 | ->dropIndex( 'mshop_locale', 'idx_msloc_sid_status' ) |
||
| 27 | ->dropIndex( 'mshop_locale', 'idx_msloc_sid_curid' ) |
||
| 28 | ->dropIndex( 'mshop_locale', 'idx_msloc_sid_pos' ); |
||
| 29 | } |
||
| 31 |