Skip to content

Commit

Permalink
chore: update schema dump
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohn25 committed Nov 13, 2024
1 parent 1f360b9 commit 1c54272
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions schema-dump.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3292,6 +3292,8 @@ CREATE TABLE public."user" (
updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP,
notification_frequency text DEFAULT 'DAILY'::text NOT NULL,
is_suspended boolean DEFAULT false NOT NULL,
language text DEFAULT 'en'::text NOT NULL,
CONSTRAINT user_language_check CHECK ((language = ANY (ARRAY['en'::text, 'es'::text]))),
CONSTRAINT user_notification_frequency_check CHECK ((notification_frequency = ANY (ARRAY['ALL'::text, 'PERIODIC'::text, 'DAILY'::text, 'NONE'::text])))
);

Expand Down

0 comments on commit 1c54272

Please sign in to comment.