Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
kfet/models/user.js
2020-05-29 12:09:40 +02:00

35 lines
705 B
JavaScript

"use strict";
module.exports = (sequelize, DataTypes) => {
const User = sequelize.define('User', {
username: {
type: DataTypes.STRING,
allowNull: false
},
passwordHash: {
type: DataTypes.STRING
},
firstName: {
type: DataTypes.STRING,
allowNull: false
},
lastName: {
type: DataTypes.STRING,
allowNull: false
}
}, {
tableName: "Users"
});
User.associate = function(models) {
// associations can be defined here
User.hasMany(models.Command, {
as: "client"
});
User.hasMany(models.Command, {
as: "pc"
});
User.hasMany(models.Command, {
as: "sandwich"
})
};
return User;
};