Skip to content

Table: user_preferences

ColumnTypeNullableNotes
user_refbigintno
notification_channelsjsonbnoDefault '{}'::jsonb
default_viewsjsonbnoDefault '{}'::jsonb
origin_server_iduuidyes
created_attimestampnoDefault now()
updated_attimestampnoDefault now()
email_cadencejsonbnoDefault '{}'::jsonb
CREATE TABLE public.user_preferences (
user_ref bigint NOT NULL,
notification_channels jsonb DEFAULT '{}'::jsonb NOT NULL,
default_views jsonb DEFAULT '{}'::jsonb NOT NULL,
origin_server_id uuid,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
email_cadence jsonb DEFAULT '{}'::jsonb NOT NULL
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.