Skip to content

Instantly share code, notes, and snippets.

View mblaanco's full-sized avatar
🏠
Working from home

Murilo Blanco Flor mblaanco

🏠
Working from home
View GitHub Profile
module.exports = {
up: function (queryInterface, Sequelize) {
return Promise.all([
queryInterface.addColumn('User', 'name', {
type: Sequelize.STRING
}),
queryInterface.addColumn('User', 'nickname', {
type: Sequelize.STRING,
})
]);