Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aabccd021/645e7903986b7b4b716703ebff63e0f6 to your computer and use it in GitHub Desktop.
Save aabccd021/645e7903986b7b4b716703ebff63e0f6 to your computer and use it in GitHub Desktop.
module.exports = {
// eslint-disable-next-line no-unused-vars
up: (queryInterface, Sequelize) => {
return queryInterface.removeColumn('users', 'username');
},
down: (queryInterface, Sequelize) => {
return queryInterface.addColumn('users', 'username', {
allowNull: true,
type: Sequelize.STRING
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment