overleaf/services/web/migrations/20240115172206_oauth_issuer_index.mjs
Liangjun Song 9e15c73228 Merge pull request #20732 from overleaf/revert-20731-revert-20480-ls-convert-migration-scripts-to-esm
Revert "Revert "Convert migration scripts to ESM""

GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
2024-10-14 10:58:50 +00:00

31 lines
563 B
JavaScript

import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const index = {
key: {
oauthApplication_id: 1,
},
name: 'oauthApplication_id_1',
partialFilterExpression: {
oauthApplication_id: {
$exists: true,
},
},
}
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [index])
}
const rollback = async client => {
const { db } = client
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [index])
}
export default {
tags,
migrate,
rollback,
}