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