how to block genereting auto createdAt updateAt code example
Example: how to block genereting auto createdAt updateAt
var user = sequelize.define('user', { /* bla */ }, {
// don't add the timestamp attributes (updatedAt, createdAt)
timestamps: false,
// your other configuration here
});