| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function down() |
||
| 29 | { |
||
| 30 | Schema::table('dashboard_apels', function(Blueprint $table) { |
||
| 31 | $table->dropForeign('dashboard_apels_province_id_foreign'); |
||
| 32 | }); |
||
| 33 | Schema::table('dashboard_apels', function(Blueprint $table) { |
||
| 34 | $table->dropForeign('dashboard_apels_regency_id_foreign'); |
||
| 35 | }); |
||
| 36 | Schema::table('regencies', function(Blueprint $table) { |
||
| 37 | $table->dropForeign('regencies_province_id_foreign'); |
||
| 38 | }); |
||
| 40 | } |