feat: update reservation form and add schema migration

This commit is contained in:
2025-12-06 23:53:05 +03:00
parent b89669f795
commit 2818e7ed1d
7 changed files with 161 additions and 18 deletions

View File

@@ -0,0 +1,4 @@
-- Add groom_region and bride_region to reservations table
ALTER TABLE reservations
ADD COLUMN IF NOT EXISTS groom_region text,
ADD COLUMN IF NOT EXISTS bride_region text;