Sequelize: Destroy/Delete all records in the table
It works for me: db.User.truncate()
I was able to solve this problem with the code:
table.sync({ force: true });
This is a safer solution than the one proposed in maheshiv's answer.
You can try using
db.User.destroy({
where: {},
truncate: true
})