Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function up() |
||
21 | { |
||
22 | $this->info( 'Remove cms indexes with siteid column first', 'vv' ); |
||
23 | |||
24 | $this->db( 'db-cms' ) |
||
25 | ->dropIndex( 'mshop_cms', 'unq_mscms_sid_url' ) |
||
26 | ->dropIndex( 'mshop_cms', 'unq_mscms_sid_label' ) |
||
27 | ->dropIndex( 'mshop_cms_list', 'unq_mscmsli_pid_dm_sid_ty_rid' ) |
||
28 | ->dropIndex( 'mshop_cms_list_type', 'unq_mscmslity_sid_dom_code' ) |
||
29 | ->dropIndex( 'mshop_cms_list_type', 'idx_mscmslity_sid_status_pos' ) |
||
30 | ->dropIndex( 'mshop_cms_list_type', 'idx_mscmslity_sid_label' ) |
||
31 | ->dropIndex( 'mshop_cms_list_type', 'idx_mscmslity_sid_code' ); |
||
32 | } |
||
34 |