Ir al contenido

Table: notifications

Esta página aún no está disponible en tu idioma.

Referenced by:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
recipient_user_refbigintno
actor_user_refbigintyes
verbtextno
target_kindtextyes
target_idtextyes
payloadjsonbnoDefault '{}'::jsonb
read_attimestampyes
delivered_attimestampnoDefault now()
email_sent_attimestampyes
origin_server_iduuidyes
created_attimestampnoDefault now()
CREATE TABLE public.notifications (
id uuid DEFAULT gen_random_uuid() NOT NULL,
recipient_user_ref bigint NOT NULL,
actor_user_ref bigint,
verb text NOT NULL,
target_kind text,
target_id text,
payload jsonb DEFAULT '{}'::jsonb NOT NULL,
read_at timestamp with time zone,
delivered_at timestamp with time zone DEFAULT now() NOT NULL,
email_sent_at timestamp with time zone,
origin_server_id uuid,
created_at timestamp with time zone DEFAULT now() NOT NULL
);

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