Table: user_capability_revokes
Esta página aún no está disponible en tu idioma.
Connected to
Section titled “Connected to”This table references:
capabilities(code) via columncapability_codeteams(id) via columnteam_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
user_ref | bigint | no | — |
capability_code | text | no | References capabilities(code) |
revoked_at | timestamp | no | Default now() |
revoked_by_user_ref | bigint | yes | — |
note | text | no | Default ''::text |
team_id | uuid | yes | References teams(id) |
expires_at | timestamp | yes | — |
Full DDL
Section titled “Full DDL”CREATE TABLE public.user_capability_revokes ( user_ref bigint NOT NULL, capability_code text NOT NULL, revoked_at timestamp with time zone DEFAULT now() NOT NULL, revoked_by_user_ref bigint, note text DEFAULT ''::text NOT NULL, team_id uuid, expires_at timestamp with time zone);Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.