mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn('cron_notification_settings', 'target_status', {
|
|
type: Sequelize.STRING(20),
|
|
allowNull: true,
|
|
defaultValue: null,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn('cron_notification_settings', 'target_status');
|
|
},
|
|
};
|