Remove deprecated updateAttributes
alexanmtz opened this issue · 1 comments
alexanmtz commented
Update attributes is deprecated from Sequelize, so all occurrences of updateAttributes
in the model objects is not working anymore and can cause breaking in the system.
We need to replace all the occurrences to use the right way, which is:
models.ModelName.update(attribures, {where: { id: modelInstance.id }});