| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function up() |
||
| 21 | { |
||
| 22 | $this->info( 'Remove ctime/editor from index tables', 'v' ); |
||
| 23 | |||
| 24 | $tables = ['mshop_index_attribute', 'mshop_index_catalog', 'mshop_index_price', 'mshop_index_supplier', 'mshop_index_text']; |
||
| 25 | $db = $this->db( 'db-product' ); |
||
| 26 | |||
| 27 | foreach( $tables as $table ) |
||
| 28 | { |
||
| 29 | $this->info( sprintf( 'Checking table "%1$s": ', $table ), 'vv', 1 ); |
||
| 30 | $db->dropColumn( $table, 'ctime' )->dropColumn( $table, 'editor' ); |
||
| 31 | } |
||
| 34 |