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