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/20181109173027-clip-publish...

21 lines
467 B
JavaScript

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