Aller au contenu

Table: search_reindex_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()
started_attimestampnoDefault now()
completed_attimestampyes
cancelled_attimestampyes
scopejsonbnoDefault '{}'::jsonb
targettextno
total_estimatedbigintyes
processedbigintnoDefault 0
succeededbigintnoDefault 0
failedbigintnoDefault 0
started_by_user_refbigintyesReferences user(ref)
last_errortextyes
  • CONSTRAINT search_reindex_run_target_check CHECK ((target = ANY (ARRAY['tsvector'::text, 'embedding'::text, 'both'::text])))
CREATE TABLE public.search_reindex_run (
id uuid DEFAULT gen_random_uuid() NOT NULL,
started_at timestamp with time zone DEFAULT now() NOT NULL,
completed_at timestamp with time zone,
cancelled_at timestamp with time zone,
scope jsonb DEFAULT '{}'::jsonb NOT NULL,
target text NOT NULL,
total_estimated bigint,
processed bigint DEFAULT 0 NOT NULL,
succeeded bigint DEFAULT 0 NOT NULL,
failed bigint DEFAULT 0 NOT NULL,
started_by_user_ref bigint,
last_error text,
CONSTRAINT search_reindex_run_target_check CHECK ((target = ANY (ARRAY['tsvector'::text, 'embedding'::text, 'both'::text])))
);

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