mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-05 02:02:44 +02:00
Adding more models
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
const { DataTypes, Model } = require('sequelize')
|
||||
|
||||
module.exports = (sequelize) => {
|
||||
class PodcastTag extends Model { }
|
||||
|
||||
PodcastTag.init({
|
||||
id: {
|
||||
type: DataTypes.UUID,
|
||||
defaultValue: DataTypes.UUIDV4,
|
||||
primaryKey: true
|
||||
}
|
||||
}, {
|
||||
sequelize,
|
||||
modelName: 'PodcastTag',
|
||||
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 { Podcast, Tag } = sequelize.models
|
||||
Podcast.belongsToMany(Tag, { through: PodcastTag })
|
||||
Tag.belongsToMany(Podcast, { through: PodcastTag })
|
||||
|
||||
Podcast.hasMany(PodcastTag)
|
||||
PodcastTag.belongsTo(Podcast)
|
||||
|
||||
Tag.hasMany(PodcastTag)
|
||||
PodcastTag.belongsTo(Tag)
|
||||
|
||||
return PodcastTag
|
||||
}
|
||||
Reference in New Issue
Block a user