fix migration

This commit is contained in:
2026-05-18 11:39:30 +03:30
parent f798d05a3c
commit ad70874bde

View File

@@ -23,7 +23,7 @@ return new class extends Migration
public function down(): void public function down(): void
{ {
Schema::table('missions', function (Blueprint $table) { Schema::table('missions', function (Blueprint $table) {
$table->dropColumn('km'); $table->dropColumn('end_km');
}); });
} }
}; };