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