From c965188b009a4780956b940203b634f664c46f32 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sat, 11 Feb 2023 16:55:27 +0100 Subject: [PATCH] 2023_02_11_155505_change_tweet_field_to_library_items_table.php --- ...nge_tweet_field_to_library_items_table.php | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 database/migrations/2023_02_11_155505_change_tweet_field_to_library_items_table.php diff --git a/database/migrations/2023_02_11_155505_change_tweet_field_to_library_items_table.php b/database/migrations/2023_02_11_155505_change_tweet_field_to_library_items_table.php new file mode 100644 index 00000000..8c77dc7a --- /dev/null +++ b/database/migrations/2023_02_11_155505_change_tweet_field_to_library_items_table.php @@ -0,0 +1,31 @@ +boolean('tweet') + ->default(false) + ->change(); + }); + } + + /** + * Reverse the migrations. + * @return void + */ + public function down() + { + Schema::table('library_items', function (Blueprint $table) { + // + }); + } +};