Files
starr-philproperties/database/migrations/20260702000003-create-cron-notification-settings.js
T
kennethobsequio 1d12f04967 new commits
Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-07-03 16:20:58 +08:00

19 lines
664 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.createTable('cron_notification_settings', {
job_name: { type: Sequelize.STRING(64), primaryKey: true },
enabled: { type: Sequelize.BOOLEAN, allowNull: false, defaultValue: true },
schedule: { type: Sequelize.STRING(20), allowNull: false },
updatedBy: { type: Sequelize.BIGINT, allowNull: true },
createdAt: { type: Sequelize.DATE, allowNull: false },
updatedAt: { type: Sequelize.DATE, allowNull: false },
});
},
async down(queryInterface) {
await queryInterface.dropTable('cron_notification_settings');
},
};