mirror of
https://gitlab.com/Alamantus/Readlebee.git
synced 2025-05-23 02:20:05 +02:00
12 lines
No EOL
186 B
JavaScript
12 lines
No EOL
186 B
JavaScript
module.exports = models => {
|
|
const {
|
|
BookReference,
|
|
Review,
|
|
} = models;
|
|
|
|
BookReference.hasMany(Review, {
|
|
foreignKey: 'bookReferenceId',
|
|
});
|
|
|
|
return BookReference;
|
|
} |