Use dropifexists for rollback

This commit is contained in:
snipe 2018-02-16 17:45:40 -08:00
parent 589c3a2be3
commit 4c4dee0bf1

View file

@ -32,6 +32,6 @@ class CreatePasswordResetsTable extends Migration
*/
public function down()
{
Schema::drop('password_resets');
Schema::dropIfExists('password_resets');
}
}