completionId: cgen-973e77ecc6594b2b836d94a41d6f394c

cgen-973e77ecc6594b2b836d94a41d6f394c
This commit is contained in:
Builder.io 2025-11-11 02:31:36 +00:00
parent 498b66ed10
commit f7f6e9e9aa

View file

@ -3,7 +3,7 @@
-- Staff members table
CREATE TABLE IF NOT EXISTS staff_members (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL UNIQUE REFERENCES auth.users(id) ON DELETE CASCADE,
user_id UUID UNIQUE REFERENCES auth.users(id) ON DELETE CASCADE,
email TEXT NOT NULL UNIQUE,
full_name TEXT NOT NULL,
position TEXT,