fix:sales_scenario_checklists 생성 마이그레이션 테이블 존재 체크 추가
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user