From e08d173e7841624f0f3d78331dcbb5591db38e16 Mon Sep 17 00:00:00 2001 From: einsz Date: Wed, 4 Jan 2023 06:47:37 +0100 Subject: [PATCH] change migration down to the old state --- ...01_03_185102_update_make_description_text_in_nests_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 index 048f6e17..c95ef762 100644 --- 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 @@ -26,7 +26,7 @@ class UpdateMakeDescriptionTextInNestsTable extends Migration public function down() { Schema::table('nests', function (Blueprint $table) { - $table->text('description')->change(); + $table->string('description')->change(); }); } }