You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Fipamo/config/migrations/20181109165352-clip-feature...

21 lines
465 B
JavaScript

'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.addColumn('Posts', 'featured', {
type: Sequelize.BOOLEAN,
unique: false,
allowNull: true,
defaultValue: false
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.removeColumn('Posts', 'featured', {
type: Sequelize.BOOLEAN,
unique: false,
allowNull: true,
defaultValue: false
});
}
};