Node.js 7 and up already support async/await syntax. How should I use async/await with sequelize transactions?
The above code has an error in destroy call.
await Model.destroy({where: {id}, transaction});
Transaction is part of the options object.