X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=database%2Fmigrations%2F2023_03_01_143514_channel_twitch_chat.php;fp=database%2Fmigrations%2F2023_03_01_143514_channel_twitch_chat.php;h=b9d39018770f6ae1437313d50b27304ed893dbce;hb=898d01d4ac5ccaa23621abda0761a893ff8c1074;hp=0000000000000000000000000000000000000000;hpb=c4835dcd53401c4e618ba077726d655d476a82c8;p=alttp.git diff --git a/database/migrations/2023_03_01_143514_channel_twitch_chat.php b/database/migrations/2023_03_01_143514_channel_twitch_chat.php new file mode 100644 index 0000000..b9d3901 --- /dev/null +++ b/database/migrations/2023_03_01_143514_channel_twitch_chat.php @@ -0,0 +1,32 @@ +string('twitch_chat')->default(''); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('events', function(Blueprint $table) { + $table->dropColumn('twitch_chat'); + }); + } +};