I am looking into django db backends. I have found that datetime values' timezone are changed to and forth by django, while saving dates into db as well as retrieving them. During this conversion process, django uses database connection's timezone settings.
I have seen that by default for sqlite db, 'UTC'
is the timezone. I want to change the database connections options, during the start of django application. How can I do that ?
Thanks in advance.