Aller au contenu

Table: workflow_states

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

Referenced by:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
domaintextno
codetextno
labeltextno
sort_orderintegernoDefault 0
is_initialbooleannoDefault false
is_terminalbooleannoDefault false
visible_by_defaultbooleannoDefault true
created_attimestampnoDefault now()
icontextnoDefault ''::text
colortextnoDefault ''::text
requires_notebooleannoDefault false
CREATE TABLE public.workflow_states (
id uuid DEFAULT gen_random_uuid() NOT NULL,
domain text NOT NULL,
code text NOT NULL,
label text NOT NULL,
sort_order integer DEFAULT 0 NOT NULL,
is_initial boolean DEFAULT false NOT NULL,
is_terminal boolean DEFAULT false NOT NULL,
visible_by_default boolean DEFAULT true NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
icon text DEFAULT ''::text NOT NULL,
color text DEFAULT ''::text NOT NULL,
requires_note boolean DEFAULT false NOT NULL
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.