Files
outline/server/migrations/20211218185045-remove-unused-indexes.js
2021-12-18 11:02:06 -08:00

13 lines
385 B
JavaScript

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