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;
The text was updated successfully, but these errors were encountered:
To fix the issue where your
pgcrypto
extension is install in a different schema topublic
, you can create an alias function; replacingYOUR_SCHEMA
with the schema you've installed the extension into.The text was updated successfully, but these errors were encountered: