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