Commit 1905c965 authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #4004 from diogoazevedos/schema-drop

Use dropIfExists instead of drop
parents 472d6ae5 3ecc0e39
...@@ -30,6 +30,6 @@ class CreateUsersTable extends Migration ...@@ -30,6 +30,6 @@ class CreateUsersTable extends Migration
*/ */
public function down() public function down()
{ {
Schema::drop('users'); Schema::dropIfExists('users');
} }
} }
...@@ -27,6 +27,6 @@ class CreatePasswordResetsTable extends Migration ...@@ -27,6 +27,6 @@ class CreatePasswordResetsTable extends Migration
*/ */
public function down() public function down()
{ {
Schema::drop('password_resets'); Schema::dropIfExists('password_resets');
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment