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: claudiomaradonna
GPG key ID: B1EDCB4C3B05C387

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;