mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 14:49:01 +02:00
4e0d8f0606
[third-party-datastore] start recording dropbox id for docs/files GitOrigin-RevId: 699fe63994848b65aa4d9cbc7966b867de56eabf
23 lines
423 B
JavaScript
23 lines
423 B
JavaScript
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
const indexes = [
|
|
{
|
|
key: {
|
|
entityId: 1,
|
|
},
|
|
name: 'entityId_1',
|
|
},
|
|
]
|
|
|
|
exports.migrate = async client => {
|
|
const { db } = client
|
|
await Helpers.addIndexesToCollection(db.dropboxEntities, indexes)
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
const { db } = client
|
|
await Helpers.dropIndexesFromCollection(db.dropboxEntities, indexes)
|
|
}
|