Skip to content

Table: collection_field_value_history

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
collection_iduuidnoReferences collections(id)
field_iduuidnoReferences field_definition(id)
old_valuejsonbyes
new_valuejsonbyes
set_bytextnoDefault 'manual'::text
changed_by_user_refbigintyes
changed_attimestampnoDefault now()
CREATE TABLE public.collection_field_value_history (
id uuid DEFAULT gen_random_uuid() NOT NULL,
collection_id uuid NOT NULL,
field_id uuid NOT NULL,
old_value jsonb,
new_value jsonb,
set_by text DEFAULT 'manual'::text NOT NULL,
changed_by_user_ref bigint,
changed_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.