feature: add postgresql acl queries example

This commit is contained in:
Claudio Maradonna 2021-08-07 10:10:43 +02:00
parent ac2cebc5e5
commit 9871d537c9
Signed by untrusted user: claudiomaradonna
GPG Key ID: B1EDCB4C3B05C387
1 changed files with 2 additions and 0 deletions

2
postgresql/acl.sql Normal file
View File

@ -0,0 +1,2 @@
REVOKE connect ON DATABASE example_db FROM PUBLIC;
GRANT connect ON DATABASE example_db TO example_role;