post_notification.js 334 B

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