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