Skip to content

Commit

Permalink
doc(readme): add info about a common problem
Browse files Browse the repository at this point in the history
  • Loading branch information
hugotiburtino committed Nov 13, 2024
1 parent bc9bcff commit e30e24a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ Docker and Make

If you want to test the image just locally, use `make docker_build`.
To publish an image just push to any branch after changing a version, and the CI is gone take care of it.

### Common problems
After upgrading kratos, there may be some changes in the database, like new tables.
You may need to grant privileges again to the postgres users.
```sql
GRANT ALL PRIVILEGES ON DATABASE kratos TO serlo;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO serlo_readonly;
```

0 comments on commit e30e24a

Please sign in to comment.