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