Created
July 19, 2024 16:18
-
-
Save geobabbler/d702b8847c8987ca832a3c5f16b562bb to your computer and use it in GitHub Desktop.
DDL for image embeddings table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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