Fixes migrations to actually rollback all the way.
This commit is contained in:
parent
33262cf34c
commit
d695532aa2
10 changed files with 20 additions and 34 deletions
|
@ -34,7 +34,7 @@ class AddNewServiceOptionsColumns extends Migration
|
|||
public function down()
|
||||
{
|
||||
Schema::table('service_options', function (Blueprint $table) {
|
||||
$table->dropForeign('config_from');
|
||||
$table->dropForeign(['config_from']);
|
||||
|
||||
$table->dropColumn('config_from');
|
||||
$table->dropColumn('config_stop');
|
||||
|
|
Reference in a new issue