Browse Source

change migration down to the old state

einsz 2 years ago
parent
commit
e08d173e78

+ 1 - 1
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()
     public function down()
     {
     {
         Schema::table('nests', function (Blueprint $table) {
         Schema::table('nests', function (Blueprint $table) {
-            $table->text('description')->change();
+            $table->string('description')->change();
         });
         });
     }
     }
 }
 }