9 lines
278 B
SQL
9 lines
278 B
SQL
-- Extended profile fields: contact info and clothing sizes
|
|
-- These are collected during onboarding and visible to event team managers
|
|
|
|
ALTER TABLE profiles
|
|
ADD COLUMN phone TEXT,
|
|
ADD COLUMN discord_handle TEXT,
|
|
ADD COLUMN shirt_size TEXT,
|
|
ADD COLUMN hoodie_size TEXT;
|