Remove no longer used notification_settings table

closes #5062
This commit is contained in:
Tom Moor
2023-04-30 17:38:10 -04:00
parent df1c360b2a
commit f2ea8daf65

View File

@@ -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.")
}
};