Hello! In my models.py, I have a field called processed_at that’s a DateTimeField with auto_add_now=True. In my admin, it’s showing central standard time but if I go onto phpMyAdmin, it’s showing UTC time. Is there anyway to make it appear as CST on phpMyAdmin? This is on MariaDB
Welcome @JCast867 !
That would be a phpMyAdmin issue, not a Django issue. There’s nothing that Django can do to affect how data is presented within phpMyAdmin.
Note that as documented at Time zones | Django documentation | Django :
When support for time zones is enabled, Django stores datetime information in UTC in the database, uses time-zone-aware datetime objects internally, …
1 Like