mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-02-28 21:19:42 +00:00
Adding more models
This commit is contained in:
parent
adc4309951
commit
bbf324ea83
27 changed files with 885 additions and 1 deletions
31
server/models/BookTag.js
Normal file
31
server/models/BookTag.js
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
const { DataTypes, Model } = require('sequelize')
|
||||
|
||||
module.exports = (sequelize) => {
|
||||
class BookTag extends Model { }
|
||||
|
||||
BookTag.init({
|
||||
id: {
|
||||
type: DataTypes.UUID,
|
||||
defaultValue: DataTypes.UUIDV4,
|
||||
primaryKey: true
|
||||
}
|
||||
}, {
|
||||
sequelize,
|
||||
modelName: 'BookTag',
|
||||
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
|
||||
const { Book, Tag } = sequelize.models
|
||||
Book.belongsToMany(Tag, { through: BookTag })
|
||||
Tag.belongsToMany(Book, { through: BookTag })
|
||||
|
||||
Book.hasMany(BookTag)
|
||||
BookTag.belongsTo(Book)
|
||||
|
||||
Tag.hasMany(BookTag)
|
||||
BookTag.belongsTo(Tag)
|
||||
|
||||
return BookTag
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue