Table: workflow_transitions
Connected to
Section titled “Connected to”This table references:
workflow_states(id) via columnfrom_state_idworkflow_states(id) via columnto_state_idcapabilities(code) via columnrequired_capability
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
from_state_id | uuid | yes | References workflow_states(id) |
to_state_id | uuid | no | References workflow_states(id) |
required_capability | text | yes | References capabilities(code) |
requires_team_scope | boolean | no | Default false |
Full DDL
Section titled “Full DDL”CREATE TABLE public.workflow_transitions ( id uuid DEFAULT gen_random_uuid() NOT NULL, from_state_id uuid, to_state_id uuid NOT NULL, required_capability text, requires_team_scope boolean DEFAULT false NOT NULL);Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.