Merge pull request #24460 from overleaf/ar-personal-access-token-add-type-to-index

[web] personal access token add type to index

GitOrigin-RevId: 28b0fb8d3764c977d667cd8a5ee543d1f2e2eed2
This commit is contained in:
Tim Down
2025-04-03 11:50:32 +01:00
committed by Copybot
parent 90fac6b206
commit bbf85ae6d2

View File

@@ -0,0 +1,31 @@
import Helpers from './lib/helpers.mjs'
const tags = ['server-ce', 'server-pro', 'saas']
const oldIndex = {
key: { user_id: 1 },
name: 'user_id_1',
}
const newIndex = {
key: { user_id: 1, type: 1 },
name: 'user_id_1_type_1',
}
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [newIndex])
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [oldIndex])
}
const rollback = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [oldIndex])
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [newIndex])
}
export default {
tags,
migrate,
rollback,
}