So I have some confusion regarding Use_Tz in Django.
When the project was first started, USE_TZ was set to True, and we also had USE_I18N set to True.
However, last week it was decided to set these settings to False. According to the docs here, Postgresql should be able to switch between True and False automatically depending the settings.py file.
However, the date time fields in my tables show a timezone stamp of +01 at the end.
Also, when I go into the database directly, using the command \d survey_server_app_activitylog
, I see the following:
date_reg | timestamp with time zone |
All fields with date time show the same entry. But, I believe that they should be set as timestamp without time zone
So, what gives? Am I totally interpreting USE_TZ = False incorrectly? Do I need to manually set the columns in the postgres database?