2023-03-12 20:51:45 +01:00
|
|
|
const { DataTypes, Model } = require('sequelize')
|
|
|
|
|
|
|
|
module.exports = (sequelize) => {
|
|
|
|
class BookSeries extends Model { }
|
|
|
|
|
|
|
|
BookSeries.init({
|
|
|
|
id: {
|
|
|
|
type: DataTypes.UUID,
|
|
|
|
defaultValue: DataTypes.UUIDV4,
|
|
|
|
primaryKey: true
|
|
|
|
},
|
|
|
|
sequence: DataTypes.STRING
|
|
|
|
}, {
|
|
|
|
sequelize,
|
2023-03-19 21:19:22 +01:00
|
|
|
modelName: 'bookSeries',
|
2023-03-12 20:51:45 +01:00
|
|
|
timestamps: false
|
|
|
|
})
|
|
|
|
|
|
|
|
// Super Many-to-Many
|
|
|
|
// ref: https://sequelize.org/docs/v6/advanced-association-concepts/advanced-many-to-many/#the-best-of-both-worlds-the-super-many-to-many-relationship
|
2023-03-19 21:19:22 +01:00
|
|
|
const { book, series } = sequelize.models
|
|
|
|
book.belongsToMany(series, { through: BookSeries })
|
|
|
|
series.belongsToMany(book, { through: BookSeries })
|
2023-03-12 20:51:45 +01:00
|
|
|
|
2023-03-19 21:19:22 +01:00
|
|
|
book.hasMany(BookSeries)
|
|
|
|
BookSeries.belongsTo(book)
|
2023-03-12 20:51:45 +01:00
|
|
|
|
2023-03-19 21:19:22 +01:00
|
|
|
series.hasMany(BookSeries)
|
|
|
|
BookSeries.belongsTo(series)
|
2023-03-12 20:51:45 +01:00
|
|
|
|
|
|
|
return BookSeries
|
|
|
|
}
|