change migration down to the old state

This commit is contained in:
einsz 2023-01-04 06:47:37 +01:00
parent 4645427403
commit e08d173e78

View file

@ -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();
}); });
} }
} }