Replies: 2 comments 5 replies
-
Hey @rkho, Try adding a schema to the extension: -- CREATE SCHEMA IF NO EXISTS extensions; (optional)
CREATE EXTENSION IF NOT EXISTS "uuid-ossp" SCHEMA extensions; |
Beta Was this translation helpful? Give feedback.
5 replies
-
https://stackoverflow.com/questions/22446478/extension-exists-but-uuid-generate-v4-fails This worked for me |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all I'm trying to use a db dump that I created off Supabase with the local Supabase dev environment but I'm running into some issues with the
uuid_generate_v4
extensionI'm initializing with
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
Here's where it fails:
select_uuid uuid DEFAULT extensions.uuid_generate_v4() NOT NULL,
And the error message:
What might I be doing wrong? I've been looking through Stack for a bit and haven't found any hints. Anything that could help unstick me would be great!
Beta Was this translation helpful? Give feedback.
All reactions