queryinterface update a sequelize example
Example: sequelize queryinterface select
return queryInterface.sequelize.query(
'SELECT * FROM "Users" WHERE username = ? ', {
replacements: ['admin'],
type: queryInterface.sequelize.QueryTypes.SELECT
}).then(users => {