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) { + // + }); + } +};