diff --git a/database/migrations/2023_01_03_185102_update_make_description_text_in_nests_table.php b/database/migrations/2023_01_03_185102_update_make_description_text_in_nests_table.php new file mode 100644 index 00000000..c95ef762 --- /dev/null +++ b/database/migrations/2023_01_03_185102_update_make_description_text_in_nests_table.php @@ -0,0 +1,32 @@ +text('description')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('nests', function (Blueprint $table) { + $table->string('description')->change(); + }); + } +}