mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3efcd3e52b
Mongo backend for the history chunk store GitOrigin-RevId: 8dcfc7e62065785616b7894009368b6acbb4428a
27 lines
648 B
JavaScript
27 lines
648 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
const indexes = [
|
|
{
|
|
key: { projectId: 1, startVersion: 1 },
|
|
name: 'projectId_1_startVersion_1',
|
|
partialFilterExpression: { state: 'active' },
|
|
unique: true,
|
|
},
|
|
{
|
|
key: { state: 1 },
|
|
name: 'state_1',
|
|
partialFilterExpression: { state: 'deleted' },
|
|
},
|
|
]
|
|
|
|
exports.migrate = async ({ db }) => {
|
|
await Helpers.addIndexesToCollection(db.projectHistoryChunks, indexes)
|
|
}
|
|
|
|
exports.rollback = async ({ db }) => {
|
|
await Helpers.dropIndexesFromCollection(db.projectHistoryChunks, indexes)
|
|
}
|