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