diff --git a/database/migrations/2026_03_05_234000_add_appointment_cert_form.php b/database/migrations/2026_03_05_234000_add_appointment_cert_form.php new file mode 100644 index 0000000..d2bc1ad --- /dev/null +++ b/database/migrations/2026_03_05_234000_add_appointment_cert_form.php @@ -0,0 +1,38 @@ +whereNull('deleted_at')->pluck('id'); + + foreach ($tenants as $tenantId) { + $exists = DB::table('approval_forms') + ->where('tenant_id', $tenantId) + ->where('code', 'appointment_cert') + ->exists(); + + if (! $exists) { + DB::table('approval_forms')->insert([ + 'tenant_id' => $tenantId, + 'name' => '위촉증명서', + 'code' => 'appointment_cert', + 'category' => 'certificate', + 'template' => '[]', + 'body_template' => '', + 'is_active' => true, + 'created_at' => now(), + 'updated_at' => now(), + ]); + } + } + } + + public function down(): void + { + DB::table('approval_forms')->where('code', 'appointment_cert')->delete(); + } +};