From c59d40fba909debc6c0055712f75be17b610c6b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Fri, 30 Sep 2022 20:20:53 +0200 Subject: [PATCH] fix: updated develper guide to force UTC timezone for test db --- website/docs/contributing/developer-guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/contributing/developer-guide.md b/website/docs/contributing/developer-guide.md index b7e5f8d214..de6d1a62cc 100644 --- a/website/docs/contributing/developer-guide.md +++ b/website/docs/contributing/developer-guide.md @@ -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 ```