From f2ea8daf65c91887a69c19d857018a9990548069 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 30 Apr 2023 17:38:10 -0400 Subject: [PATCH] Remove no longer used notification_settings table closes #5062 --- .../20230430213332-remove-notification-settings.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 server/migrations/20230430213332-remove-notification-settings.js 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.") + } +};