[Django]-PostgreSQL saving date in 'Local time zone' while i set it to 'UTC' with Django

9👍

If you want change timezone of Postgresql, go through this command:

ALTER USER User_Name SET TimeZone TO 'utc';

And restart the postgres service through this:

sudo service postgresql restart

👤Sonu

Leave a comment