chore(API): Seeder 파일 정리

- Dummy Seeder 파일들 정리 및 개선
- ApprovalTestDataSeeder 수정
- PositionSeeder, StockReceivingSeeder 수정

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-13 19:49:28 +09:00
parent 1044b57e15
commit be90c351fa
23 changed files with 206 additions and 154 deletions

View File

@@ -17,6 +17,7 @@ public function run(): void
$existing = WorkSetting::where('tenant_id', $tenantId)->first();
if ($existing) {
$this->command->info(' ⚠ work_settings: 이미 존재 (스킵)');
return;
}
@@ -36,4 +37,4 @@ public function run(): void
$this->command->info(' ✓ work_settings: 1건 생성');
}
}
}