📅  最后修改于: 2022-03-11 14:48:58.830000             🧑  作者: Mango
// starting with Sequelize 4.0 and above, you have to use the prototype methodology in order to define instance methods
User.prototype.validPassword = function(password) {
return bcrypt.compareSync(password, this.password);
};