Ir al contenido

Table: user_blocks

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

ColumnTypeNullableNotes
blocker_user_refbigintno
blocked_user_refbigintno
reasontextyes
created_attimestampnoDefault now()
origin_server_iduuidyes
  • CONSTRAINT user_blocks_check CHECK ((blocker_user_ref <> blocked_user_ref))
CREATE TABLE public.user_blocks (
blocker_user_ref bigint NOT NULL,
blocked_user_ref bigint NOT NULL,
reason text,
created_at timestamp with time zone DEFAULT now() NOT NULL,
origin_server_id uuid,
CONSTRAINT user_blocks_check CHECK ((blocker_user_ref <> blocked_user_ref))
);

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