Files
outline/server/migrations/20230430213332-remove-notification-settings.js
2023-04-30 17:38:10 -04:00

12 lines
243 B
JavaScript

'use strict';
module.exports = {
async up (queryInterface, Sequelize) {
await queryInterface.dropTable("notification_settings");
},
async down (queryInterface, Sequelize) {
throw new Error("Cannot undo this migration.")
}
};