Skip to content

Commit c9c94f2

Browse files
committed
Added some notes on databases
1 parent 18ae8b7 commit c9c94f2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,3 +248,22 @@ The resource API uses two scopes that need to be defined within the IDP:
248248

249249
* mrmat-python-api-flask-resource-write - Permit create/modify/remove of resources
250250
* mrmat-python-api-flask-resource-read - Permit reading resources
251+
252+
## Databases
253+
254+
### Postgres
255+
256+
```postgresql
257+
infradb=# create role mhpaf encrypted password 'very-secret' login;
258+
CREATE ROLE
259+
infradb=# create schema mhpaf;
260+
CREATE SCHEMA
261+
infradb=# alter schema mhpaf owner to mhpaf;
262+
ALTER SCHEMA
263+
infradb=# alter role mhpaf set search_path to mhpaf;
264+
ALTER ROLE
265+
```
266+
267+
### MSSQLLocalDB
268+
269+
Doesn't currently work.

0 commit comments

Comments
 (0)