overleaf/services/web/migrations/20200729120824_update_subscriptions_manager_ids_index.mjs
Liangjun Song 9e15c73228 Merge pull request #20732 from overleaf/revert-20731-revert-20480-ls-convert-migration-scripts-to-esm
Revert "Revert "Convert migration scripts to ESM""

GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
2024-10-14 10:58:50 +00:00

50 lines
942 B
JavaScript

/* eslint-disable no-unused-vars */
import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const oldIndex = {
unique: true,
key: {
manager_ids: 1,
},
name: 'manager_ids_1',
partialFilterExpression: {
manager_ids: {
$exists: true,
},
},
}
const newIndex = {
key: {
manager_ids: 1,
},
name: 'manager_ids_1',
sparse: true,
}
const migrate = async client => {
const { db } = client
await Helpers.dropIndexesFromCollection(db.subscriptions, [oldIndex])
await Helpers.addIndexesToCollection(db.subscriptions, [newIndex])
}
const rollback = async client => {
const { db } = client
try {
await Helpers.dropIndexesFromCollection(db.subscriptions, [newIndex])
await Helpers.addIndexesToCollection(db.subscriptions, [oldIndex])
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}
export default {
tags,
migrate,
rollback,
}