ยฉ 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabaseโ€ข14mo agoโ€ข
5 replies
Zeya888

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?

Any guidance would be appreciated! ๐Ÿ™

Thanks in advance for the help! ๐Ÿ˜Š
image.png
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Problem with Supabase Vector Container
SupabaseSSupabase / help-and-questions
4mo ago
Creating a "community" Supabase template?
SupabaseSSupabase / help-and-questions
4mo ago
Supabase Discord Oauth Provider token issue
SupabaseSSupabase / help-and-questions
3mo ago
Issue with onAuthStateChange in Pinia + Supabase
SupabaseSSupabase / help-and-questions
2mo ago