Hereโs a concise message for the Supabase Discord community:Issue with VECTOR Type in Supabase
Hi everyone! I'm trying to create a table with a column of type VECTOR(768) for storing embeddings. Hereโs the query Iโm using:
CREATE TABLE interest_embeddings ( id SERIAL PRIMARY KEY, interest_id INT REFERENCES dictionary_interests(id) ON DELETE CASCADE, embedding VECTOR(768) NOT NULL, -- Embedding column created_at TIMESTAMP DEFAULT NOW() ); However, I get the following error: ERROR: 42704: type "vector" does not exist.
I assume the VECTOR type is missing. Is there something I need to configure or enable to use this type in Supabase? Or is this related to the current plan Iโm on?
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.