Aller au contenu

Table: workflow_audit

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

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
resource_kindtextno
resource_iduuidno
from_state_iduuidyesReferences workflow_states(id)
to_state_iduuidnoReferences workflow_states(id)
actor_user_refbigintyes
notetextnoDefault ''::text
transitioned_attimestampnoDefault now()
CREATE TABLE public.workflow_audit (
id uuid DEFAULT gen_random_uuid() NOT NULL,
resource_kind text NOT NULL,
resource_id uuid NOT NULL,
from_state_id uuid,
to_state_id uuid NOT NULL,
actor_user_ref bigint,
note text DEFAULT ''::text NOT NULL,
transitioned_at timestamp with time zone DEFAULT now() NOT NULL
);

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