I'd like to know how to permanently change the timezone on postgresql -- using set timezone TO 'UTC'
only changes it in current session, upon restarting it's back to my region timezone. If i change the postgresql.config file under data to:
datestyle = 'iso, dmy'
#intervalstyle = 'postgres'
timezone = 'UTC'
#timezone_abbreviations = 'Default'
Even if i stop the postgresql-x64-12
service, save the file, and restart service, it goes back to my region timezone afterwards.
Thank you!