Skip to content

Table: storage_variants

This table references:

ColumnTypeNullableNotes
object_hashtextnoReferences storage_objects(hash)
variant_keytextno
size_bytesbigintno
content_typetextnoDefault 'application/octet-stream'::text
metadatajsonbnoDefault '{}'::jsonb
created_attimestampnoDefault now()
  • CONSTRAINT storage_variants_size_bytes_check CHECK ((size_bytes >= 0))
CREATE TABLE public.storage_variants (
object_hash text NOT NULL,
variant_key text NOT NULL,
size_bytes bigint NOT NULL,
content_type text DEFAULT 'application/octet-stream'::text NOT NULL,
metadata jsonb DEFAULT '{}'::jsonb NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT storage_variants_size_bytes_check CHECK ((size_bytes >= 0))
);

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