2021-07-21 06:34:09 -04:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
import Helpers from './lib/helpers.mjs'
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const tags = ['saas']
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const migrate = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
const { db } = client
|
|
|
|
|
|
|
|
await Helpers.dropIndexesFromCollection(db.subscriptions, [oldIndex])
|
|
|
|
await Helpers.addIndexesToCollection(db.subscriptions, [newIndex])
|
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const rollback = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2024-10-02 05:32:13 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
tags,
|
|
|
|
migrate,
|
|
|
|
rollback,
|
|
|
|
}
|