Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
Dane Everitt 2018-06-02 21:32:26 +00:00 committed by StyleCI Bot
parent 3078b61ac6
commit 969b16a563
9 changed files with 30 additions and 39 deletions

View file

@ -14,7 +14,7 @@ class AddMaintenanceToNodes extends Migration
public function up()
{
Schema::table('nodes', function (Blueprint $table) {
$table->boolean('maintenance_mode')->after('behind_proxy')->default(false);
$table->boolean('maintenance_mode')->after('behind_proxy')->default(false);
});
}
@ -26,7 +26,7 @@ class AddMaintenanceToNodes extends Migration
public function down()
{
Schema::table('nodes', function (Blueprint $table) {
$table->dropColumn('maintenance_mode');
$table->dropColumn('maintenance_mode');
});
}
}