From 9d95b2c3736bc27449264e7c46afc10ce6a011a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sat, 14 Mar 2026 16:53:19 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[sales]=20sales=5Ftenant=5Fmanagements?= =?UTF-8?q?=EC=97=90=20options=20JSON=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 프로모션, 기타 확장 데이터 저장용 --- ...ions_to_sales_tenant_managements_table.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php diff --git a/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php b/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php new file mode 100644 index 0000000..84b9fee --- /dev/null +++ b/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php @@ -0,0 +1,30 @@ +table('sales_tenant_managements', function (Blueprint $table) { + $table->json('options')->nullable()->after('notes')->comment('프로모션, 기타 확장 데이터'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::connection('codebridge')->table('sales_tenant_managements', function (Blueprint $table) { + $table->dropColumn('options'); + }); + } +};