cubash-archive/models/post_notification.js

18 lines
521 B
JavaScript

module.exports = (sequelize, DataTypes) => {
let PostNotification = sequelize.define('PostNotification', {}, {
classMethods: {
associate (models) {
PostNotification.belongsTo(models.User)
PostNotification.belongsTo(models.Post)
PostNotification.belongsTo(models.Notification)
}
}
})
PostNotification.associate = function (models) {
PostNotification.belongsTo(models.User)
PostNotification.belongsTo(models.Post)
PostNotification.belongsTo(models.Notification)
}
return PostNotification
}