The created_at and updated_at fields of my MariaDB database are previously filled with dates of my specific timezone (Europe/Paris).
I have now integrated GORM (v1.23.8), however, when using autoCreateTime and autoUpdateTime in my GORM model, the dates are always written in UTC. How can I configure GORM, so that the autoCreateTime and autoUpdateTime dates are written in a different timezone than UTC.
I have tried to add the Loc and ParseTime params to the MariaDB connection string, but that didn't fix the issue.