Agregué la zona horaria en index.js al inicializar la conexión mysql
var db_config = {
host : 'localhost',
user : 'xxx',
password : '',
database : 'xxx',
timezone: 'utc' //<-here this line was missing
};
Agregué la zona horaria en index.js al inicializar la conexión mysql
var db_config = {
host : 'localhost',
user : 'xxx',
password : '',
database : 'xxx',
timezone: 'utc' //<-here this line was missing
};