mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
26 lines
519 B
JavaScript
26 lines
519 B
JavaScript
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['saas']
|
||
|
|
||
|
const index = {
|
||
|
key: {
|
||
|
oauthApplication_id: 1,
|
||
|
},
|
||
|
name: 'oauthApplication_id_1',
|
||
|
partialFilterExpression: {
|
||
|
oauthApplication_id: {
|
||
|
$exists: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [index])
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
const { db } = client
|
||
|
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [index])
|
||
|
}
|