Ir al contenido

Table: asset_companions

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

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
asset_iduuidnoReferences assets(id)
companion_pathtextno
object_hashtextnoReferences storage_objects(hash)
content_typetextnoDefault 'application/octet-stream'::text
size_bytesbigintno
created_attimestampnoDefault now()
  • CONSTRAINT asset_companions_companion_path_check CHECK (((length(companion_path) >= 1) AND (length(companion_path) <= 512)))
  • CONSTRAINT asset_companions_size_bytes_check CHECK ((size_bytes >= 0))
CREATE TABLE public.asset_companions (
id uuid DEFAULT gen_random_uuid() NOT NULL,
asset_id uuid NOT NULL,
companion_path text NOT NULL,
object_hash text NOT NULL,
content_type text DEFAULT 'application/octet-stream'::text NOT NULL,
size_bytes bigint NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT asset_companions_companion_path_check CHECK (((length(companion_path) >= 1) AND (length(companion_path) <= 512))),
CONSTRAINT asset_companions_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.