Aller au contenu

Table: metadata_backfill_run

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

This table references:

  • user(ref) via column started_by_user_ref
ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
scopejsonbnoDefault '{}'::jsonb
totalbigintnoDefault 0
processedbigintnoDefault 0
succeededbigintnoDefault 0
failedbigintnoDefault 0
started_attimestampnoDefault now()
completed_attimestampyes
cancelled_attimestampyes
started_by_user_refbigintyesReferences user(ref)
CREATE TABLE public.metadata_backfill_run (
id uuid DEFAULT gen_random_uuid() NOT NULL,
scope jsonb DEFAULT '{}'::jsonb NOT NULL,
total bigint DEFAULT 0 NOT NULL,
processed bigint DEFAULT 0 NOT NULL,
succeeded bigint DEFAULT 0 NOT NULL,
failed bigint DEFAULT 0 NOT NULL,
started_at timestamp with time zone DEFAULT now() NOT NULL,
completed_at timestamp with time zone,
cancelled_at timestamp with time zone,
started_by_user_ref bigint
);

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