This commit is contained in:
Tom Moor
2021-12-18 11:02:06 -08:00
parent 39018f16b5
commit 0a89b7b5b9

View 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
}
};