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