Fix for down migrations

This commit is contained in:
Hillel Coren 2017-04-06 21:56:02 +03:00
parent 1f244c94d4
commit 7a4a72fa35

View File

@ -138,5 +138,7 @@ class AddGatewayFeeLocation extends Migration
Schema::table('credits', function ($table) { Schema::table('credits', function ($table) {
$table->dropColumn('public_notes'); $table->dropColumn('public_notes');
}); });
Schema::drop('account_email_settings');
} }
} }