Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function down() |
||
29 | { |
||
30 | DB::statement("SET foreign_key_checks = 0"); |
||
31 | Schema::table('user_access_log', function($table) |
||
32 | { |
||
33 | $table->dropForeign('user_access_log_user_id_foreign'); |
||
34 | }); |
||
35 | Schema::dropIfExists('user_access_log'); |
||
36 | DB::statement("SET foreign_key_checks = 1"); |
||
37 | } |
||
38 | |||
40 |