I have associations between two models defined as below:
For Contact Model (in a separate file)
classMethods: {
associate: function (models){
Contact.belongsTo(models.User)
}
}
For User(in a separate file)
classMethods: {
associate: function (models){
User.hasMany(models.Contact, {onDelete: 'CASCADE'})
}
}
The problem is when deleting the user the contact related to the user is not deleting any advice on what am I doing wrong would be helpful?
Thanks in advance
See Question&Answers more detail:os