'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn('notification_broadcasts', 'link_url', { type: Sequelize.STRING(2048), allowNull: true, }); }, async down(queryInterface) { await queryInterface.removeColumn('notification_broadcasts', 'link_url'); }, };