index.js
350 Bytes
/**
* Created by Tommy Huang on 18/03/21.
*/
const User = require('./user')
const BorrowList = require('./borrowList')
User.hasMany(BorrowList, {foreignKey: 'creditor_id', as: 'Creditor'})
User.hasMany(BorrowList, {foreignKey: 'borrower_id', as: 'Borrower'})
BorrowList.belongsTo(User)
module.exports = {
User: User,
BorrowList: BorrowList
}