Table: user_preferences
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
user_ref | bigint | no | — |
notification_channels | jsonb | no | Default '{}'::jsonb |
default_views | jsonb | no | Default '{}'::jsonb |
origin_server_id | uuid | yes | — |
created_at | timestamp | no | Default now() |
updated_at | timestamp | no | Default now() |
email_cadence | jsonb | no | Default '{}'::jsonb |
Full DDL
Section titled “Full DDL”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.