We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b55e96 commit 02b9941Copy full SHA for 02b9941
README.md
@@ -118,6 +118,14 @@ To make the extension available to the database add on `postgresql.conf`:
118
shared_preload_libraries = 'pg_net'
119
```
120
121
+By default, pg_net is available on the `postgres` database. To use pg_net on a different database, you can add the following on `postgresql.conf`:
122
+
123
+```
124
+pg_net.database_name = '<dbname>';
125
126
127
+Using pg_net on multiple databases in a cluster is not supported.
128
129
### Installing in PostgreSQL
130
131
To activate the extension in PostgreSQL, run the create extension command. The extension creates its own schema named net to avoid naming conflicts.
0 commit comments