mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
b69ff9417a
Revert "Convert migration scripts to ESM" GitOrigin-RevId: ca9ddda6ddee8964f72797d3b653ef9cee6a7a49
18 lines
388 B
JavaScript
18 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)
|
|
}
|