closes #2747
This commit is contained in:
13
server/migrations/20211218185045-remove-unused-indexes.js
Normal file
13
server/migrations/20211218185045-remove-unused-indexes.js
Normal file
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
up: async (queryInterface, Sequelize) => {
|
||||
await queryInterface.removeIndex("documents", "documents_id_atlas_id_deleted_at");
|
||||
await queryInterface.removeIndex("apiKeys", "api_keys_secret_deleted_at");
|
||||
await queryInterface.removeIndex("groups", "groups_deleted_at");
|
||||
},
|
||||
|
||||
down: async (queryInterface, Sequelize) => {
|
||||
// noop
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user