From 73dd6595d01d19bf33a734b94b93ea422ba9d03f Mon Sep 17 00:00:00 2001 From: pro Date: Fri, 30 Jan 2026 15:16:20 +0900 Subject: [PATCH] =?UTF-8?q?fix:sales=5Fscenario=5Fchecklists=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=EB=A7=88=EC=9D=B4=EA=B7=B8=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=85=98=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EC=A1=B4=EC=9E=AC=20?= =?UTF-8?q?=EC=B2=B4=ED=81=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- ...6_01_29_100200_create_sales_scenario_checklists_table.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/database/migrations/2026_01_29_100200_create_sales_scenario_checklists_table.php b/database/migrations/2026_01_29_100200_create_sales_scenario_checklists_table.php index 61d215e..cea0112 100644 --- a/database/migrations/2026_01_29_100200_create_sales_scenario_checklists_table.php +++ b/database/migrations/2026_01_29_100200_create_sales_scenario_checklists_table.php @@ -12,6 +12,11 @@ */ public function up(): void { + // 테이블이 이미 존재하면 건너뛰기 + if (Schema::hasTable('sales_scenario_checklists')) { + return; + } + Schema::create('sales_scenario_checklists', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('tenant_id')->comment('테넌트 ID');