<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddServiceScriptTrackingToServers extends Migration { /** * Run the migrations. */ public function up() { Schema::table('servers', function (Blueprint $table) { $table->boolean('skip_scripts')->default(false)->after('description'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('servers', function (Blueprint $table) { $table->dropColumn('skip_scripts'); }); } }