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 bc9bcff commit e30e24aCopy full SHA for e30e24a
README.md
@@ -30,3 +30,11 @@ Docker and Make
30
31
If you want to test the image just locally, use `make docker_build`.
32
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