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