You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To fix the issue where your pgcrypto extension is install in a different schema to public, you can create an alias function; replacing YOUR_SCHEMA with the schema you've installed the extension into.
createfunctionpublic.gen_random_uuid() returns uuid as $$
selectYOUR_SCHEMA.gen_random_uuid();
$$ language sql;
benjie, christiaanwesterbeek, GuiBrandt and joeyorlando