Aller au contenu

Table: storage_sweep_runs

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

Referenced by:

ColumnTypeNullableNotes
iduuidno
kindtextno
statustextnoDefault 'running'::text
cursortextyes
objects_scannedbigintnoDefault 0
findings_countbigintnoDefault 0
started_attimestampnoDefault now()
finished_attimestampyes
errortextyes
triggered_by_user_refbigintyes
  • CONSTRAINT storage_sweep_runs_counts_check CHECK (((objects_scanned >= 0) AND (findings_count >= 0)))
  • CONSTRAINT storage_sweep_runs_kind_check CHECK ((kind = ANY (ARRAY['orphan_scan'::text, 'checksum_verify'::text])))
  • CONSTRAINT storage_sweep_runs_status_check CHECK ((status = ANY (ARRAY['running'::text, 'completed'::text, 'failed'::text])))
CREATE TABLE public.storage_sweep_runs (
id uuid NOT NULL,
kind text NOT NULL,
status text DEFAULT 'running'::text NOT NULL,
cursor text,
objects_scanned bigint DEFAULT 0 NOT NULL,
findings_count bigint DEFAULT 0 NOT NULL,
started_at timestamp with time zone DEFAULT now() NOT NULL,
finished_at timestamp with time zone,
error text,
triggered_by_user_ref bigint,
CONSTRAINT storage_sweep_runs_counts_check CHECK (((objects_scanned >= 0) AND (findings_count >= 0))),
CONSTRAINT storage_sweep_runs_kind_check CHECK ((kind = ANY (ARRAY['orphan_scan'::text, 'checksum_verify'::text]))),
CONSTRAINT storage_sweep_runs_status_check CHECK ((status = ANY (ARRAY['running'::text, 'completed'::text, 'failed'::text])))
);

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