I've seen many different posts across SO about aware timezones in django (i.e. datetimes with a timezone value). Even converting naive datetime to aware I've read online that many applications that deal with timezones usually store everything in UTC to avoid any Day light savings conversions and then use frontend to handle the conversions.
I'd like to know if it's possible to store an aware datetime with the actual timezone in my database. If so, how would I go about it?
So instead of storing something like:
2022-10-13 13:56:00+00:00
I'd like to store:
2022-10-13 13:56:00+04:30
(US/Eastern)