feat: [departments] options JSON 컬럼 추가

- 조직도 숨기기 등 확장 속성 저장용
This commit is contained in:
김보곤
2026-03-06 20:24:56 +09:00
parent 64877869e6
commit 428b2e2a12

View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('departments', function (Blueprint $table) {
$table->json('options')->nullable()->after('sort_order');
});
}
public function down(): void
{
Schema::table('departments', function (Blueprint $table) {
$table->dropColumn('options');
});
}
};