Skip to content

Commit e30e24a

Browse files
committed
doc(readme): add info about a common problem
1 parent bc9bcff commit e30e24a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,11 @@ Docker and Make
3030

3131
If you want to test the image just locally, use `make docker_build`.
3232
To publish an image just push to any branch after changing a version, and the CI is gone take care of it.
33+
34+
### Common problems
35+
After upgrading kratos, there may be some changes in the database, like new tables.
36+
You may need to grant privileges again to the postgres users.
37+
```sql
38+
GRANT ALL PRIVILEGES ON DATABASE kratos TO serlo;
39+
GRANT SELECT ON ALL TABLES IN SCHEMA public TO serlo_readonly;
40+
```

0 commit comments

Comments
 (0)