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.
SOD/models/command.js

32 lines
647 B
JavaScript
Raw Normal View History

2020-08-15 12:36:20 +02:00
"use strict";
const {
Model
} = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class Command extends Model {
static associate(models) {
Command.belongsToMany(models.Sandwich, {through: "SandwichCommand"});
Command.belongsTo(models.Department);
}
}
Command.init({
firstName: {
type: DataTypes.STRING,
allowNull: false
},
lastName: {
type: DataTypes.STRING,
allowNull: false
},
date: {
type: DataTypes.DATEONLY,
defaultValue: DataTypes.NOW,
allowNull: false
}
}, {
sequelize,
modelName: "Command",
});
return Command;
};