Colubrina/backend/migrations/20220326124900-accent.js

21 lines
406 B
JavaScript

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