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