add example config to changelog

Signed-off-by: Joep Peeters <joep.peeters@nedap.com>
This commit is contained in:
Joep Peeters
2023-03-06 14:13:15 +01:00
parent 4698b8eaf7
commit c93425b635
+17 -1
View File
@@ -2,4 +2,20 @@
'@backstage/backend-common': patch
---
Adds config option to set ownership for newly created schemas and tables in Postgres
Adds config option `backend.database.role` to set ownership for newly created schemas and tables in Postgres
### example config
The example config below connects to the database as user `v-backstage-123` but sets the ownership of
the create schema's and tables to `backstage`
```yaml
backend:
database:
client: pg
pluginDivisionMode: schema
role: backstage
connection:
user: v-backstage-123
...
```