add zone to mission

This commit is contained in:
2025-06-11 11:41:43 +03:30
parent b38cf3b74a
commit 81ea9d2f7e
5 changed files with 34 additions and 2 deletions

View File

@@ -13,7 +13,9 @@ return new class extends Migration
{
Schema::table('missions', function (Blueprint $table) {
$table->json('area');
$table->integer('zone');
$table->string('zone_fa');
$table->string('type_fa');
});
}
@@ -23,7 +25,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('missions', function (Blueprint $table) {
$table->dropColumn('area');
$table->dropColumn(['area', 'zone', 'zone_fa', 'type_fa']);
});
}
};