MentionNotification.js 331 B

12345678910111213
  1. module.exports = (sequelize, DataTypes) => {
  2. let MentionNotification = sequelize.define('MentionNotification', {}, {
  3. classMethods: {
  4. associate (models) {
  5. Notification.belongsTo(models.User)
  6. Notification.belongsTo(models.Post)
  7. Notification.belongsTo(models.Notification)
  8. }
  9. }
  10. })
  11. return MentionNotification
  12. }