"use strict"; module.exports = { up: async (queryInterface, Sequelize) => { return queryInterface.addColumn("file_operations", "options", { type: Sequelize.JSONB, allowNull: true, }); }, down: async (queryInterface) => { return queryInterface.removeColumn("file_operations", "options"); }, };