add configurable appointment slot duration per professional

DB: slot_duration_minutes INT DEFAULT 30 on professionals table
Backend DTO: slot_duration_minutes (optional int, 5-480 min) in UpdateProfessionalDto

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-12 19:24:49 -05:00
co-authored by Claude Sonnet 4.6
parent afbf4d537e
commit c720911172
3 changed files with 9 additions and 1 deletions
@@ -0,0 +1 @@
ALTER TABLE "professionals" ADD COLUMN IF NOT EXISTS "slot_duration_minutes" INTEGER NOT NULL DEFAULT 30;