In django docs, it is written that they can always store the datetime objects in TIME_ZONE provided in settings.
I wanted to ask that is it just sufficient to date time aware objects or do we have to convert them to TIME_ZONE setting? ie if my TIME_ZONE = "America/Los_Angeles" and USE_TZ = True, and I try to save a time zone aware object which is in "UTC", will that work? That is, will django convert that "UTC" timezone object to "America/Los_Angeles" before saving to the db?