Table: storage_variants
Esta página aún no está disponible en tu idioma.
Connected to
Section titled “Connected to”This table references:
storage_objects(hash) via columnobject_hash
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
object_hash | text | no | References storage_objects(hash) |
variant_key | text | no | — |
size_bytes | bigint | no | — |
content_type | text | no | Default 'application/octet-stream'::text |
metadata | jsonb | no | Default '{}'::jsonb |
created_at | timestamp | no | Default now() |
Constraints
Section titled “Constraints”CONSTRAINT storage_variants_size_bytes_check CHECK ((size_bytes >= 0))
Full DDL
Section titled “Full DDL”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.