Pierre Wessman 7b45d19308 init
2025-01-16 16:22:58 +01:00

7 lines
175 B
SQL

CREATE TABLE public.items (
id bigserial NOT NULL,
embedding vector(2048) NULL,
"text" varchar(1024) NULL,
date_added date NULL,
CONSTRAINT items_pkey PRIMARY KEY (id)
);