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
create schema if not exists net;
create extension pg_net with schema net;
but was getting error
{"Type":"ErrorResponse","Severity":"ERROR","SeverityUnlocalized":"ERROR","Code":"55000","Message":"schema net is not a member of extension \"pg_net\"","Detail":"An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.","Hint":"","Position":0,"InternalPosition":0,"InternalQuery":"","Where":"","SchemaName":"","TableName":"","ColumnName":"","DataTypeName":"","ConstraintName":"","File":"pg_depend.c","Line":274,"Routine":"checkMembershipInCurrentExtension","UnknownFields":null}
Improve documentation
Link
https://supabase.com/docs/guides/database/extensions/pgnet
Describe the problem
Documentation is incorrect
The sql to enable pg_net extension in the doc is:
but was getting error
Describe the improvement
https://github.com/supabase/pg_net/blob/master/docs/installation.md had the sql I needed to enable the extension by migration:
Additional context
Thanks @GaryAustin1
The text was updated successfully, but these errors were encountered: