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

31 lines
615 B
JavaScript
Raw Permalink Normal View History

2020-08-15 12:36:20 +02:00
"use strict";
const {
Model
} = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class Sandwich extends Model {
static associate(models) {
2020-08-18 17:54:00 +02:00
Sandwich.belongsToMany(models.Order, {through: {model: models.SandwichOrder, unique: false}});
2020-08-15 12:36:20 +02:00
}
}
Sandwich.init({
name: {
type: DataTypes.STRING,
primaryKey: true
2020-08-15 12:36:20 +02:00
},
price: {
type: DataTypes.FLOAT,
allowNull: false
},
enable: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: true
2020-08-15 12:36:20 +02:00
}
}, {
sequelize,
modelName: "Sandwich",
});
return Sandwich;
};