X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=database%2Fmigrations%2F2022_04_27_115504_tournament_discord_settings.php;fp=database%2Fmigrations%2F2022_04_27_115504_tournament_discord_settings.php;h=8dab17c82a9083153007ca095a2eed2b47ccf585;hb=f446d5bcf3b87bd9443a060e27e9c0601c96fbb9;hp=0000000000000000000000000000000000000000;hpb=d566d913c251fbb05e6bd314cc51f8b5ca49fe57;p=alttp.git diff --git a/database/migrations/2022_04_27_115504_tournament_discord_settings.php b/database/migrations/2022_04_27_115504_tournament_discord_settings.php new file mode 100644 index 0000000..8dab17c --- /dev/null +++ b/database/migrations/2022_04_27_115504_tournament_discord_settings.php @@ -0,0 +1,32 @@ +string('discord_round_template')->default(''); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('tournaments', function(Blueprint $table) { + $table->dropColumn('discord_round_template'); + }); + } +};