Files
weeding/_archive/sql/supabase_schema_add_regions.sql
2025-12-29 21:34:32 +03:00

5 lines
173 B
SQL

-- 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;