mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
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:
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user