1
0
mwe-comments/server/db/models/index.js
2019-07-13 07:56:06 -04:00

10 lines
217 B
JavaScript
Executable File

const Comment = require('./comment')
Comment.belongsTo(Comment, { as: 'parent' })
Comment.hasMany(Comment, {
as: { singular: 'reply', plural: 'replies' },
foreignKey: 'parentId',
})
module.exports = { Comment }