2019-07-09 11:24:05 -04:00

7 lines
216 B
JavaScript
Executable File

const Comment = require('./comment')
Comment.belongsTo(Comment, {as: 'parent'})
Comment.belongsToMany(Comment, {through: 'CommentReplies', as: { singular: 'reply', plural: 'replies' } })
module.exports = {Comment}