Sequelize: Destroy/Delete all records in the table
You can try using
db.User.destroy({
where: {},
truncate: true
})
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.