i work with sequelize 6.14.11, nodeJs 14.16.0, and postgres 13.2.
I post data with a column createdAt like this '2021-06-23 15:23:52.39+02' but when i get data, the value of createdAt is '2021-06-23T13:23:52.39Z'.
I configure sequelize with this :
sequelize = new Sequelize(config.database, config.username, config.password, {dialect: 'postgres', dialectOptions: {useUTC: false}, timezone: '+02:00'});
I need help, i don't understand, please, thanks