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;