diff --git a/server/migrations/20230430213332-remove-notification-settings.js b/server/migrations/20230430213332-remove-notification-settings.js new file mode 100644 index 000000000..a964eb194 --- /dev/null +++ b/server/migrations/20230430213332-remove-notification-settings.js @@ -0,0 +1,11 @@ +'use strict'; + +module.exports = { + async up (queryInterface, Sequelize) { + await queryInterface.dropTable("notification_settings"); + }, + + async down (queryInterface, Sequelize) { + throw new Error("Cannot undo this migration.") + } +};