Check current MySQL timezone:
SELECT @@global.time_zone, @@session.time_zone;
The value might be SYSTEM, UTC, or your current MySQL timezone.
If you want to change the default MySQL timezone to something else (e.g Asia/Jakarta), run this query:
SET GLOBAL time_zone = 'Asia/Jakarta';