Colubrina/backend/migrations/20220522080612-userAvatar.js

20 lines
365 B
JavaScript

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