I have an application which is using 'Asia/Taipei' as its timezone in settings.py and using the auto_now=true on one of the datetimefield on models.py:
--- settings.py ---
TIME_ZONE = 'Asia/Taipei'
--- models.py ---
models.DateTimeField(auto_now=True)
On my system, Taipei is also used as my timezone:

On the MySQL Workbench, I already queried for both global and session tz and their returns are "SYSTEM":

My question is when an entry is added to DB, the timezone specified on the system and on settings.py was not used. See sample snapshot:

What am I lacking? Doing wrong? Thanks in advance!