mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
37 lines
651 B
JavaScript
37 lines
651 B
JavaScript
|
/* eslint-disable no-unused-vars */
|
||
|
|
||
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['saas']
|
||
|
|
||
|
const indexes = [
|
||
|
{
|
||
|
key: {
|
||
|
project_id: 1,
|
||
|
},
|
||
|
name: 'project_id_1',
|
||
|
},
|
||
|
{
|
||
|
key: {
|
||
|
user_id: 1,
|
||
|
},
|
||
|
name: 'user_id_1',
|
||
|
},
|
||
|
]
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
|
||
|
await Helpers.addIndexesToCollection(db.projectHistoryLabels, indexes)
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
const { db } = client
|
||
|
|
||
|
try {
|
||
|
await Helpers.dropIndexesFromCollection(db.projectHistoryLabels, indexes)
|
||
|
} catch (err) {
|
||
|
console.error('Something went wrong rolling back the migrations', err)
|
||
|
}
|
||
|
}
|