Aller au contenu

Table: storage_objects

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

Referenced by:

ColumnTypeNullableNotes
hashtextno
size_bytesbigintno
content_typetextnoDefault 'application/octet-stream'::text
backendtextno
backend_buckettextyes
origin_server_iduuidyes
gc_eligible_attimestampyes
created_attimestampnoDefault now()
  • CONSTRAINT storage_objects_hash_check CHECK ((hash ~ '^[0-9a-f]{64}$'::text))
  • CONSTRAINT storage_objects_size_bytes_check CHECK ((size_bytes >= 0))
CREATE TABLE public.storage_objects (
hash text NOT NULL,
size_bytes bigint NOT NULL,
content_type text DEFAULT 'application/octet-stream'::text NOT NULL,
backend text NOT NULL,
backend_bucket text,
origin_server_id uuid,
gc_eligible_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT storage_objects_hash_check CHECK ((hash ~ '^[0-9a-f]{64}$'::text)),
CONSTRAINT storage_objects_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.