Aller au contenu

Table: digest_queue

Ce contenu n’est pas encore disponible dans votre langue.

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
user_refbigintnoReferences user(ref)
topictextno
cadencetextno
notification_iduuidnoReferences notifications(id)
queued_attimestampnoDefault now()
sent_attimestampyes
  • CONSTRAINT digest_queue_cadence_check CHECK ((cadence = ANY (ARRAY['hourly'::text, 'daily'::text, 'weekly'::text])))
CREATE TABLE public.digest_queue (
id uuid DEFAULT gen_random_uuid() NOT NULL,
user_ref bigint NOT NULL,
topic text NOT NULL,
cadence text NOT NULL,
notification_id uuid NOT NULL,
queued_at timestamp with time zone DEFAULT now() NOT NULL,
sent_at timestamp with time zone,
CONSTRAINT digest_queue_cadence_check CHECK ((cadence = ANY (ARRAY['hourly'::text, 'daily'::text, 'weekly'::text])))
);

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