time sequelize html example stack overflow
const Test = sequelize.define('test', { // attributes name: { type: DataType.STRING, allowNull: false }, createdAt: { type: DataType.DATE, //note here this is the guy that you are looking for get() { return moment(this.getDataValue('createdAt')).format('DD/MM/YYYY h:mm:ss'); } }, updatedAt: { type: DataType.DATE, get() { return moment(this.getDataValue('updatedAt')).format('DD/MM/YYYY h:mm:ss'); } }