Skip to content

Instantly share code, notes, and snippets.

@geobabbler
Created July 19, 2024 16:18
Show Gist options
  • Save geobabbler/d702b8847c8987ca832a3c5f16b562bb to your computer and use it in GitHub Desktop.
Save geobabbler/d702b8847c8987ca832a3c5f16b562bb to your computer and use it in GitHub Desktop.
DDL for image embeddings table
-- public.image_embeddings definition
-- Drop table
-- DROP TABLE public.image_embeddings;
CREATE TABLE public.image_embeddings (
id serial4 NOT NULL,
image_path text NULL,
embedding public.vector NULL,
CONSTRAINT image_embeddings_pkey PRIMARY KEY (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment