From 428b2e2a1278ed54c80d93f7e4bb696b956d7755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 6 Mar 2026 20:24:56 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[departments]=20options=20JSON=20?= =?UTF-8?q?=EC=BB=AC=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 조직도 숨기기 등 확장 속성 저장용 --- ...01500_add_options_to_departments_table.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/2026_03_06_201500_add_options_to_departments_table.php diff --git a/database/migrations/2026_03_06_201500_add_options_to_departments_table.php b/database/migrations/2026_03_06_201500_add_options_to_departments_table.php new file mode 100644 index 0000000..7cde6bf --- /dev/null +++ b/database/migrations/2026_03_06_201500_add_options_to_departments_table.php @@ -0,0 +1,22 @@ +json('options')->nullable()->after('sort_order'); + }); + } + + public function down(): void + { + Schema::table('departments', function (Blueprint $table) { + $table->dropColumn('options'); + }); + } +};