boolean('enabled')->after('group_id')->default(true); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('components', function (Blueprint $table) { $table->dropColumn('enabled'); }); } }