Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function down( Schema $schema ): void { |
||
26 | $table = $schema->getTable( 'address' ); |
||
27 | $table->dropIndex( 'idx_ac_first_name' ); |
||
28 | $table->dropIndex( 'idx_ac_last_name' ); |
||
29 | $table->dropIndex( 'idx_ac_street' ); |
||
30 | $table->dropIndex( 'idx_ac_postcode' ); |
||
31 | $table->dropIndex( 'idx_ac_city' ); |
||
32 | } |
||
34 |