mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
22 lines
500 B
JavaScript
22 lines
500 B
JavaScript
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
||
|
|
||
|
const index = {
|
||
|
key: { _id: 1, lastOpened: 1, active: 1 },
|
||
|
name: '_id_1_lastOpened_1_active_1',
|
||
|
partialFilterExpression: {
|
||
|
active: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
await Helpers.addIndexesToCollection(db.projects, [index])
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
const { db } = client
|
||
|
await Helpers.dropIndexesFromCollection(db.projects, [index])
|
||
|
}
|