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