Files
starr-philproperties/database/migrations/20260711000001-add-link-url-to-notification-broadcasts.js
T
kennethobsequio 82ea9c77c4 merged
Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-07-11 12:12:29 +08:00

15 lines
340 B
JavaScript

'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');
},
};