Table: teams
Connected to
Section titled “Connected to”Referenced by:
assets— columnteam_idfeatured_items— columnteam_idposts— columnteam_idteam_closure— columnsancestor_id,descendant_idteam_memberships— columnteam_idteam_parents— columnschild_id,parent_iduser_capability_grants— columnteam_iduser_capability_revokes— columnteam_iduser_roles— columnteam_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
slug | text | no | — |
name | text | no | — |
description | text | no | Default ''::text |
origin_server_id | uuid | yes | — |
created_at | timestamp | no | Default now() |
updated_at | timestamp | no | Default now() |
deleted_at | timestamp | yes | — |
Full DDL
Section titled “Full DDL”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.