Additional context
Cant figure out whats wrong with datetime, it always return UTC
DB Creation script:
CREATE USER usera WITH PASSWORD 'dfsfsdfsdfdsf';
CREATE DATABASE mydb;
ALTER DATABASE mydbSET timezone TO 'Europe/Moscow';
ALTER ROLE usera SET client_encoding TO 'utf8';
ALTER ROLE usera SET default_transaction_isolation TO 'read committed';
ALTER ROLE usera SET timezone TO 'Europe/Moscow';
GRANT ALL PRIVILEGES ON DATABASE crm_db TO crm_admin;
GRANT ALL ON DATABASE mydb TO usera ;
ALTER DATABASE mydb OWNER TO usera ;
Describe the bug Timezone not working
To Reproduce
Expected behavior
Additional context Cant figure out whats wrong with datetime, it always return UTC DB Creation script: