-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jan Lesage
committed
Dec 22, 2023
1 parent
b866595
commit 771457c
Showing
3 changed files
with
101 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
GRANT CONNECT ON DATABASE verenigingsregister TO fullaccess; | ||
GRANT USAGE ON SCHEMA public TO fullaccess; | ||
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO fullaccess; | ||
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO fullaccess; | ||
GRANT INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER ON ALL TABLES IN SCHEMA public TO fullaccess; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
drop database if exists verenigingsregister with (force); | ||
create database verenigingsregister; | ||
|
||
grant all privileges on database verenigingsregister to verenigingsregister; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters