mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
25 lines
488 B
JavaScript
25 lines
488 B
JavaScript
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['saas']
|
||
|
|
||
|
const indexes = [
|
||
|
{
|
||
|
key: {
|
||
|
brandVariationId: 1,
|
||
|
},
|
||
|
name: 'brandVariationId_1',
|
||
|
},
|
||
|
]
|
||
|
|
||
|
exports.migrate = async ({ db }) => {
|
||
|
await Helpers.addIndexesToCollection(db.projects, indexes)
|
||
|
}
|
||
|
|
||
|
exports.rollback = async ({ db }) => {
|
||
|
try {
|
||
|
await Helpers.dropIndexesFromCollection(db.projects, indexes)
|
||
|
} catch (err) {
|
||
|
console.error('Something went wrong rolling back the migrations', err)
|
||
|
}
|
||
|
}
|