'use strict'; /** @type {import('sequelize-cli').Migration} */ module.exports = { up: async (queryInterface, Sequelize) => { await queryInterface.addColumn('worships', 'organ_playing', { type: Sequelize.STRING, allowNull: true }); }, down: async (queryInterface, Sequelize) => { await queryInterface.removeColumn('worships', 'organ_playing'); } };