Ir al contenido

Table: storage_sweep_findings

Esta página aún no está disponible en tu idioma.

This table references:

ColumnTypeNullableNotes
iduuidno
run_iduuidnoReferences storage_sweep_runs(id)
findingtextno
object_hashtextno
variant_keytextno
detailtextnoDefault ''::text
detected_attimestampnoDefault now()
resolved_attimestampyes
  • CONSTRAINT storage_sweep_findings_finding_check CHECK ((finding = ANY (ARRAY['missing_object'::text, 'orphan_object'::text, 'checksum_mismatch'::text, 'size_mismatch'::text])))
CREATE TABLE public.storage_sweep_findings (
id uuid NOT NULL,
run_id uuid NOT NULL,
finding text NOT NULL,
object_hash text NOT NULL,
variant_key text NOT NULL,
detail text DEFAULT ''::text NOT NULL,
detected_at timestamp with time zone DEFAULT now() NOT NULL,
resolved_at timestamp with time zone,
CONSTRAINT storage_sweep_findings_finding_check CHECK ((finding = ANY (ARRAY['missing_object'::text, 'orphan_object'::text, 'checksum_mismatch'::text, 'size_mismatch'::text])))
);

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