6👍
Typically, database will store the UTC time by default and the corresponding application will do the conversion based on the settings/configurations.
In your case, it depends on your USE_TZ
setting.
When USE_TZ is False, this is the time zone in which Django will store
all datetimes. When USE_TZ is True, this is the default time zone that
Django will use to display datetimes in templates and to interpret
datetimes entered in forms.
For more details, you can refer
- [Django]-How to filter a Django QuerySet's related fields' 'all' or 'none'
- [Django]-Keep User and Group in same section in Django admin panel
- [Django]-Make celery wait for task to finish
- [Django]-How do I programmatically create a user with django_social_auth?
- [Django]-Adding javascript to an extended django template for google analytics
Source:stackexchange.com