Based on some tests (MySQL) it seems that the Database-Server uses the Computers timezone by default. As Server should mostly always run in UTC I want to suggest to set the default Timezone to UTC on server-creation.
Driver MySql8
DBngin build number: Version 6.0 (60)
macOS version: N/A
Steps to change it manually (on MySQL): Stackoverflow
Add config: default-time-zone='+00:00'
Perform queries:
SELECT now();
SELECT @@global.time_zone;
SET time_zone = "+00:00";
SET @@global.time_zone = '+00:00';
Based on some tests (MySQL) it seems that the Database-Server uses the Computers timezone by default. As Server should mostly always run in UTC I want to suggest to set the default Timezone to UTC on server-creation.
Driver MySql8 DBngin build number: Version 6.0 (60)
macOS version: N/A
Steps to change it manually (on MySQL): Stackoverflow
default-time-zone='+00:00'