Open createthis opened 3 years ago
feature request: beforeBulkUpdate and afterBulkUpdate hooks
beforeBulkUpdate
afterBulkUpdate
Currently, using Sequelize's Model.update() does not leave a paper trail. It should. (using instance.update() works fine today and that should stay the same)
Model.update()
instance.update()
feature request:
beforeBulkUpdate
andafterBulkUpdate
hooksCurrently, using Sequelize's
Model.update()
does not leave a paper trail. It should. (usinginstance.update()
works fine today and that should stay the same)