Table: asset_visual_embedding
Ce contenu n’est pas encore disponible dans votre langue.
Connected to
Section titled “Connected to”This table references:
assets(id) via columnasset_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
asset_id | uuid | no | References assets(id) |
embedding | public.vector(768) | no | — |
model | text | no | — |
checkpoint | text | no | — |
provider | text | no | — |
created_at | timestamp | no | Default now() |
updated_at | timestamp | no | Default now() |
Full DDL
Section titled “Full DDL”CREATE TABLE public.asset_visual_embedding ( asset_id uuid NOT NULL, embedding public.vector(768) NOT NULL, model text NOT NULL, checkpoint text NOT NULL, provider text NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, updated_at timestamp with time zone DEFAULT now() NOT NULL);Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.