Aller au contenu

Table: teams

Ce contenu n’est pas encore disponible dans votre langue.

Referenced by:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
slugtextno
nametextno
descriptiontextnoDefault ''::text
origin_server_iduuidyes
created_attimestampnoDefault now()
updated_attimestampnoDefault now()
deleted_attimestampyes
CREATE TABLE public.teams (
id uuid DEFAULT gen_random_uuid() NOT NULL,
slug text NOT NULL,
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,
deleted_at timestamp with time zone
);

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