Ir al contenido

Table: user_capability_grants

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

This table references:

ColumnTypeNullableNotes
user_refbigintno
capability_codetextnoReferences capabilities(code)
granted_attimestampnoDefault now()
granted_by_user_refbigintyes
notetextnoDefault ''::text
team_iduuidyesReferences teams(id)
expires_attimestampyes
request_refuuidyesReferences resource_request(id)
CREATE TABLE public.user_capability_grants (
user_ref bigint NOT NULL,
capability_code text NOT NULL,
granted_at timestamp with time zone DEFAULT now() NOT NULL,
granted_by_user_ref bigint,
note text DEFAULT ''::text NOT NULL,
team_id uuid,
expires_at timestamp with time zone,
request_ref uuid
);

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