spee.ch/models/user.js
2017-09-15 14:41:47 -07:00

33 lines
612 B
JavaScript

module.exports = (sequelize, { STRING, BOOLEAN, INTEGER }) => {
const User = sequelize.define(
'User',
{
channelName: {
type : STRING,
allowNull: false,
},
channelClaimId: {
type : STRING,
allowNull: false,
},
password: {
type : STRING,
allowNull: false,
},
email: {
type : STRING,
allowNull: false,
},
},
{
freezeTableName: true,
}
);
User.associate = db => {
User.hasMany(db.File);
User.hasOne(db.Certificate);
};
return User;
};