Table: metadata_backfill_run
Ce contenu n’est pas encore disponible dans votre langue.
Connected to
Section titled “Connected to”This table references:
user(ref) via columnstarted_by_user_ref
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
scope | jsonb | no | Default '{}'::jsonb |
total | bigint | no | Default 0 |
processed | bigint | no | Default 0 |
succeeded | bigint | no | Default 0 |
failed | bigint | no | Default 0 |
started_at | timestamp | no | Default now() |
completed_at | timestamp | yes | — |
cancelled_at | timestamp | yes | — |
started_by_user_ref | bigint | yes | References user(ref) |
Full DDL
Section titled “Full DDL”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.