Add location column to staff_members table
cgen-a0881347e7af47fc8c9d0c5dea113bec
This commit is contained in:
parent
35fb1b11b1
commit
c7f2056073
1 changed files with 7 additions and 0 deletions
7
supabase/migrations/20250122_add_location_to_staff.sql
Normal file
7
supabase/migrations/20250122_add_location_to_staff.sql
Normal 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;
|
||||
Loading…
Reference in a new issue