Add onboarded column to user_profiles table
cgen-370e192718ad494db53d1689a348f458
This commit is contained in:
parent
e16aea5fb7
commit
017fa8324e
1 changed files with 5 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
-- Add onboarded column to track if user has completed onboarding
|
||||
ALTER TABLE user_profiles ADD COLUMN IF NOT EXISTS onboarded BOOLEAN DEFAULT false;
|
||||
|
||||
-- Create index for filtering onboarded users
|
||||
CREATE INDEX IF NOT EXISTS idx_user_profiles_onboarded ON user_profiles(onboarded);
|
||||
Loading…
Reference in a new issue