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 18ae8b7 commit c9c94f2Copy full SHA for c9c94f2
README.md
@@ -248,3 +248,22 @@ The resource API uses two scopes that need to be defined within the IDP:
248
249
* mrmat-python-api-flask-resource-write - Permit create/modify/remove of resources
250
* 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