Ir al contenido

Table: teams

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

This table references:

  • assets(id) via column hero_asset_id

Referenced by:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
slugtextno
nametextno
descriptiontextnoDefault ''::text
origin_server_iduuidyes
created_attimestampnoDefault now()
updated_attimestampnoDefault now()
deleted_attimestampyes
hero_asset_iduuidyesReferences assets(id)
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,
hero_asset_id uuid
);

Please see the schema overview for context. This document was last regenerated on 2026-09-23T03:23:00.434Z.