1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00

docs: include create db permission required for new tests (#9301)

This commit is contained in:
Gastón Fournier 2025-02-12 16:36:03 +01:00 committed by GitHub
parent b5bd5ee3f2
commit cbbf255d9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,6 +35,7 @@ Unleash currently also works with PostgreSQL v13.0+, but this might change in a
```bash
$ psql postgres <<SQL
CREATE USER unleash_user WITH PASSWORD 'password';
ALTER USER unleash_user CREATEDB;
CREATE DATABASE unleash WITH OWNER unleash_user;
CREATE DATABASE unleash_test WITH OWNER unleash_user;
ALTER DATABASE unleash_test SET timezone TO 'UTC';