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

fix: updated develper guide to force UTC timezone for test db

This commit is contained in:
Ivar Conradi Østhus 2022-09-30 20:20:53 +02:00
parent ba8bdc585a
commit c59d40fba9
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -25,6 +25,8 @@ CREATE DATABASE unleash;
GRANT ALL PRIVILEGES ON DATABASE unleash to unleash_user;
CREATE DATABASE unleash_test;
GRANT ALL PRIVILEGES ON DATABASE unleash_test to unleash_user;
ALTER DATABASE unleash_test SET timezone TO 'UTC';
SQL
```