spee.ch/models/user.js

30 lines
567 B
JavaScript
Raw Normal View History

2017-09-17 02:50:22 +02:00
module.exports = (sequelize, { STRING }) => {
2017-09-15 23:41:47 +02:00
const User = sequelize.define(
2017-09-17 02:50:22 +02:00
'User',
2017-09-15 23:41:47 +02:00
{
2017-09-26 05:30:45 +02:00
userName: {
2017-09-15 23:41:47 +02:00
type : STRING,
allowNull: false,
},
password: {
type : STRING,
allowNull: false,
},
},
{
freezeTableName: true,
}
2017-09-18 19:14:06 +02:00
);
2017-09-15 23:41:47 +02:00
User.associate = db => {
2017-09-26 07:49:27 +02:00
User.hasOne(db.Channel);
2017-09-15 23:41:47 +02:00
};
2017-09-18 19:14:06 +02:00
User.prototype.validPassword = (givenpassword, thispassword) => {
console.log(`${givenpassword} === ${thispassword}`);
return (givenpassword === thispassword);
};
2017-09-15 23:41:47 +02:00
return User;
};