Aller au contenu

Table: workflow_transitions

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

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
from_state_iduuidyesReferences workflow_states(id)
to_state_iduuidnoReferences workflow_states(id)
required_capabilitytextyesReferences capabilities(code)
requires_team_scopebooleannoDefault false
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.