Sequelizar a coluna de índice de atualização
'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.addIndex('reports', ['client_id'])
.then(() => {
return queryInterface.addIndex('reports', ['report_name'])
})
.then(() => {
return queryInterface.addIndex('reports', ['report_date'])
})
},
down: (queryInterface, Sequelize) => {
return queryInterface.removeIndex('reports', ['client_id'])
.then(() => {
return queryInterface.removeIndex('reports', ['report_name'])
})
.then(() => {
return queryInterface.removeIndex('reports', ['report_date'])
})
}
};
Better Barracuda