Colubrina/backend/migrations/20220508053846-password.js

21 lines
401 B
JavaScript

"use strict"
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn("Users", "password", {
type: Sequelize.TEXT,
allowNull: true,
defaultValue: null
})
},
down: async (queryInterface, Sequelize) => {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}