Wishlist: Add model and command

This commit is contained in:
2023-03-16 00:29:53 +01:00
parent b8db85e71c
commit 77e09ca5ce
2 changed files with 61 additions and 4 deletions

27
models/wishlist.js Normal file
View File

@@ -0,0 +1,27 @@
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Wishlist extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
models.User.hasOne(Wishlist);
Wishlist.belongsTo(models.User);
Wishlist.belongsToMany(models.Character, { through: 'WishlistCharacter' });
models.Character.belongsToMany(Wishlist, { through: 'WishlistCharacter' });
}
}
Wishlist.init({
ping: DataTypes.BOOLEAN,
}, {
sequelize,
modelName: 'Wishlist',
});
return Wishlist;
};