How can I deal with time zone?

In database it didn’t include time zone information, so how can I do to make it show in different time zone?

I tried to use “scheduler.config.server_utc = true”, but I wasn’t sure it could work what I wanted.

Best wishes,

Yes, this is necessary line
With such option enabled, each time when data need to be saved in DB , it will be converted from local time to utc ( so DB will hold UTC time ) , and during loading, data will be converted from UTC to actual client timezone, so clients in different timezones will see different time of the same event.

There is no need in any extra coding on server side.