mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
45 lines
898 B
JavaScript
45 lines
898 B
JavaScript
|
/* eslint-disable no-unused-vars */
|
||
|
|
||
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.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,
|
||
|
}
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
|
||
|
await Helpers.dropIndexesFromCollection(db.subscriptions, [oldIndex])
|
||
|
await Helpers.addIndexesToCollection(db.subscriptions, [newIndex])
|
||
|
}
|
||
|
|
||
|
exports.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)
|
||
|
}
|
||
|
}
|