X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=database%2Fmigrations%2F2022_03_16_083537_add_seed_code.php;fp=database%2Fmigrations%2F2022_03_16_083537_add_seed_code.php;h=db63d5a5bdae38bd270a0e2b6b9c37701fbf4f60;hb=2110d91bc5016fd78aec02578b09506b6d67f45e;hp=0000000000000000000000000000000000000000;hpb=c0980e3225576839de383a6988df40d7630bd316;p=alttp.git diff --git a/database/migrations/2022_03_16_083537_add_seed_code.php b/database/migrations/2022_03_16_083537_add_seed_code.php new file mode 100644 index 0000000..db63d5a --- /dev/null +++ b/database/migrations/2022_03_16_083537_add_seed_code.php @@ -0,0 +1,32 @@ +text('code'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('rounds', function(Blueprint $table) { + $table->dropColumn('code'); + }); + } +};