add zone to mission
This commit is contained in:
@@ -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']);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user