Table: team_parents
Esta página aún no está disponible en tu idioma.
Connected to
Section titled “Connected to”This table references:
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
child_id | uuid | no | References teams(id) |
parent_id | uuid | no | References teams(id) |
Constraints
Section titled “Constraints”CONSTRAINT team_parents_check CHECK ((child_id <> parent_id))
Full DDL
Section titled “Full DDL”CREATE TABLE public.team_parents ( child_id uuid NOT NULL, parent_id uuid NOT NULL, CONSTRAINT team_parents_check CHECK ((child_id <> parent_id)));Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.