boolean('disabled')->default(false); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('eggs', function (Blueprint $table) { $table->dropColumn('disabled'); }); } };