"use strict"; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn("authentication_providers", "settings", { type: Sequelize.JSONB, allowNull: true, defaultValue: null, }); }, async down(queryInterface) { await queryInterface.removeColumn("authentication_providers", "settings"); }, };