fix:sales_scenario_checklists 생성 마이그레이션 테이블 존재 체크 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-30 15:16:20 +09:00
parent f30fbadc90
commit 73dd6595d0

View File

@@ -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');