nodejs:timezoneを設定してconnect

1.時間の設定
・timezoneを’Asia/Tokyo’にする

2.code

const connection = mysql.createConnection({
        host: 'localhost',
        user: 'root_admin',
        password: 'xxxxxx',
        database: 'database_01',
        timezone:'Asia/Tokyo'
});