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/sauce.js

25 lines
511 B
JavaScript
Raw Normal View History

2020-05-29 11:59:25 +02:00
"use strict";
module.exports = (sequelize, DataTypes) => {
const Sauce = sequelize.define('Sauce', {
name: {
type: DataTypes.STRING,
allowNull: false,
unique: true
},
price: {
type: DataTypes.FLOAT,
defaultValue: 0,
allowNull: false
}
}, {
tableName: "Sauces"
});
Sauce.associate = function(models) {
// associations can be defined here
Sauce.belongsToMany(models.Command, {
through: "CommandsSauces"
});
};
return Sauce;
};