Merge pull request #4004 from diogoazevedos/schema-drop

Use dropIfExists instead of drop
This commit is contained in:
Taylor Otwell 2016-10-16 15:06:04 -05:00 committed by GitHub
commit 1905c965eb
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,6 @@ public function up()
*/
public function down()
{
Schema::drop('users');
Schema::dropIfExists('users');
}
}

View File

@ -27,6 +27,6 @@ public function up()
*/
public function down()
{
Schema::drop('password_resets');
Schema::dropIfExists('password_resets');
}
}