mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
19 lines
388 B
JavaScript
19 lines
388 B
JavaScript
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['saas']
|
||
|
|
||
|
const indexes = [
|
||
|
{
|
||
|
key: { 'overleaf.history.display': 1 },
|
||
|
name: 'overleaf.history.display_1',
|
||
|
},
|
||
|
]
|
||
|
|
||
|
exports.migrate = async ({ db }) => {
|
||
|
await Helpers.dropIndexesFromCollection(db.projects, indexes)
|
||
|
}
|
||
|
|
||
|
exports.rollback = async ({ db }) => {
|
||
|
await Helpers.addIndexesToCollection(db.projects, indexes)
|
||
|
}
|