X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=database%2Fmigrations%2F2024_03_12_133614_channel_twitch_sync.php;fp=database%2Fmigrations%2F2024_03_12_133614_channel_twitch_sync.php;h=5f4422ca67241f8ce03a780d61639efd26d12da3;hb=4caeac216c5e5a044d81b63a8aa5b66451162271;hp=0000000000000000000000000000000000000000;hpb=c04aa8598c286d9688e10ebdedc1b7f6058ee1df;p=alttp.git diff --git a/database/migrations/2024_03_12_133614_channel_twitch_sync.php b/database/migrations/2024_03_12_133614_channel_twitch_sync.php new file mode 100644 index 0000000..5f4422c --- /dev/null +++ b/database/migrations/2024_03_12_133614_channel_twitch_sync.php @@ -0,0 +1,32 @@ +string('twitch_id')->default(''); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('channels', function (Blueprint $table) { + $table->dropColumn('twitch_id'); + }); + } +};