spee.ch/models/user.js

39 lines
766 B
JavaScript
Raw Normal View History

2017-09-16 17:50:22 -07:00
module.exports = (sequelize, { STRING }) => {
2017-09-15 14:41:47 -07:00
const User = sequelize.define(
2017-09-16 17:50:22 -07:00
'User',
2017-09-15 14:41:47 -07:00
{
channelName: {
type : STRING,
allowNull: false,
},
channelClaimId: {
type : STRING,
allowNull: false,
},
password: {
type : STRING,
allowNull: false,
},
2017-09-19 12:54:23 -07:00
address: {
type : STRING,
allowNull: false,
},
2017-09-15 14:41:47 -07:00
},
{
freezeTableName: true,
}
2017-09-18 10:14:06 -07:00
);
2017-09-15 14:41:47 -07:00
User.associate = db => {
User.hasMany(db.File);
User.hasOne(db.Certificate);
};
2017-09-18 10:14:06 -07:00
User.prototype.validPassword = (givenpassword, thispassword) => {
console.log(`${givenpassword} === ${thispassword}`);
return (givenpassword === thispassword);
};
2017-09-15 14:41:47 -07:00
return User;
};