1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-04-04 02:31:36 +02:00
Readlebee/server/sequelize/associations/ShelfItem.js

24 lines
No EOL
387 B
JavaScript

module.exports = models => {
const {
ShelfItem,
Shelf,
BookReference,
Status,
} = models;
ShelfItem.belongsTo(Shelf, {
foreignKey: 'shelfId',
onDelete: 'CASCADE',
});
ShelfItem.belongsTo(BookReference, {
foreignKey: 'bookId',
onDelete: 'CASCADE',
});
ShelfItem.hasMany(Status, {
foreignKey: 'shelfItemId',
});
return ShelfItem;
}