spee.ch/migrations/ChangeAmountColumnType.js

27 lines
580 B
JavaScript
Raw Normal View History

2017-09-26 05:30:45 +02:00
module.exports = {
up: (queryInterface, Sequelize) => {
// logic for transforming into the new state
const p1 = queryInterface.changeColumn(
'Claim',
'amount',
2017-09-26 05:30:45 +02:00
{
type : Sequelize.DOUBLE,
2017-09-26 05:30:45 +02:00
allowNull: true,
}
);
return Promise.all([p1]);
2017-09-26 05:30:45 +02:00
},
down: (queryInterface, Sequelize) => {
// logic for reverting the changes
const p1 = queryInterface.changeColumn(
'Claim',
'amount',
{
type : Sequelize.STRING,
allowNull: true,
}
2017-09-26 05:30:45 +02:00
);
return Promise.all([p1]);
2017-09-26 05:30:45 +02:00
},
};