7 lines
188 B
JavaScript
Executable File

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