Ir al contenido

Table: user_roles

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

This table references:

  • roles(id) via column role_id
  • teams(id) via column team_id
ColumnTypeNullableNotes
user_refbigintno
role_iduuidnoReferences roles(id)
assigned_attimestampnoDefault now()
assigned_by_user_refbigintyes
team_iduuidyesReferences teams(id)
CREATE TABLE public.user_roles (
user_ref bigint NOT NULL,
role_id uuid NOT NULL,
assigned_at timestamp with time zone DEFAULT now() NOT NULL,
assigned_by_user_ref bigint,
team_id uuid
);

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