Colubrina/backend/migrations/20220430063515-sessionsUser.js

20 lines
379 B
JavaScript

"use strict"
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn("Sessions", "userId", {
type: Sequelize.BIGINT,
allowNull: false
})
},
down: async (queryInterface, Sequelize) => {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}