"use strict"; /** @type {import('sequelize-cli').Migration} */ module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn("events", "authType", { type: Sequelize.STRING, allowNull: true, }); }, async down(queryInterface) { await queryInterface.removeColumn("events", "authType"); }, };