MentionNotification.js 352 B

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