From c7f2056073bc20685071220fa84fad80f4a88c23 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 11 Nov 2025 03:03:50 +0000 Subject: [PATCH] Add location column to staff_members table cgen-a0881347e7af47fc8c9d0c5dea113bec --- supabase/migrations/20250122_add_location_to_staff.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 supabase/migrations/20250122_add_location_to_staff.sql diff --git a/supabase/migrations/20250122_add_location_to_staff.sql b/supabase/migrations/20250122_add_location_to_staff.sql new file mode 100644 index 00000000..8b660eec --- /dev/null +++ b/supabase/migrations/20250122_add_location_to_staff.sql @@ -0,0 +1,7 @@ +-- Add location column to staff_members table if it doesn't exist +ALTER TABLE IF EXISTS staff_members +ADD COLUMN IF NOT EXISTS location TEXT; + +-- Also add to staff_contractors for consistency +ALTER TABLE IF EXISTS staff_contractors +ADD COLUMN IF NOT EXISTS location TEXT;