'use strict'; module.exports = { up: async (queryInterface, Sequelize) => { await queryInterface.addColumn("collections", "isPersonal", { type: Sequelize.BOOLEAN, allowNull: false, defaultValue: false, }); }, down: async (queryInterface, Sequelize) => { await queryInterface.removeColumn("collections", "isPersonal"); } };