spee.ch/models/user.js

39 lines
727 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
{
channelName: {
type : STRING,
allowNull: false,
},
channelClaimId: {
type : STRING,
allowNull: false,
},
password: {
type : STRING,
allowNull: false,
},
email: {
type : STRING,
allowNull: false,
},
},
{
freezeTableName: true,
2017-09-17 02:50:22 +02:00
instanceMethods: {
validPassword: function (password) {
return (password === this.password);
},
},
2017-09-15 23:41:47 +02:00
}
);
User.associate = db => {
User.hasMany(db.File);
User.hasOne(db.Certificate);
};
return User;
};