Add location column to staff_members table

cgen-a0881347e7af47fc8c9d0c5dea113bec
This commit is contained in:
Builder.io 2025-11-11 03:03:50 +00:00
parent 35fb1b11b1
commit c7f2056073

View file

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