Ir al contenido

Table: roles

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

This table references:

  • roles(id) via column parent_id

Referenced by:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
parent_iduuidyesReferences roles(id)
nametextno
descriptiontextnoDefault ''::text
origin_server_iduuidyes
created_attimestampnoDefault now()
updated_attimestampnoDefault now()
CREATE TABLE public.roles (
id uuid DEFAULT gen_random_uuid() NOT NULL,
parent_id uuid,
name text NOT NULL,
description text DEFAULT ''::text NOT NULL,
origin_server_id uuid,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_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.