2024-10-01 05:53:36 -04:00
|
|
|
const Helpers = require('./lib/helpers')
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-01 05:53:36 -04:00
|
|
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
const index = {
|
|
|
|
key: { _id: 1, lastOpened: 1, active: 1 },
|
|
|
|
name: '_id_1_lastOpened_1_active_1',
|
|
|
|
partialFilterExpression: {
|
|
|
|
active: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2024-10-01 05:53:36 -04:00
|
|
|
exports.migrate = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
const { db } = client
|
|
|
|
await Helpers.addIndexesToCollection(db.projects, [index])
|
|
|
|
}
|
|
|
|
|
2024-10-01 05:53:36 -04:00
|
|
|
exports.rollback = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
const { db } = client
|
|
|
|
await Helpers.dropIndexesFromCollection(db.projects, [index])
|
|
|
|
}
|