2024-10-02 05:32:13 -04:00
|
|
|
import Helpers from './lib/helpers.mjs'
|
2022-09-01 11:32:43 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const tags = ['saas']
|
2022-09-01 11:32:43 -04:00
|
|
|
|
|
|
|
const indexes = [
|
|
|
|
{
|
|
|
|
key: { 'overleaf.userId': 1, 'dropbox.id': 1 },
|
|
|
|
name: 'overleaf.userId_1_dropbox.id_1',
|
|
|
|
unique: true,
|
|
|
|
partialFilterExpression: { 'dropbox.id': { $exists: true } },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: { 'overleaf.userId': 1, 'overleaf.id': 1 },
|
|
|
|
name: 'overleaf.userId_1_overleaf.id_1',
|
|
|
|
unique: true,
|
|
|
|
partialFilterExpression: { 'overleaf.id': { $exists: true } },
|
|
|
|
},
|
|
|
|
{ key: { 'overleaf.userId': 1, 'dropbox.pathLower': 'hashed' } },
|
|
|
|
]
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const migrate = async client => {
|
2022-09-01 11:32:43 -04:00
|
|
|
const { db } = client
|
|
|
|
// Forcibly drop the dropboxEntities collection. The new structure is
|
|
|
|
// different and we don't want to keep the data with the old structure around.
|
|
|
|
await db.dropboxEntities.drop()
|
|
|
|
await Helpers.addIndexesToCollection(db.dropboxEntities, indexes)
|
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const rollback = async client => {
|
2022-09-01 11:32:43 -04:00
|
|
|
const { db } = client
|
|
|
|
await Helpers.dropIndexesFromCollection(db.dropboxEntities, indexes)
|
|
|
|
}
|
2024-10-02 05:32:13 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
tags,
|
|
|
|
migrate,
|
|
|
|
rollback,
|
|
|
|
}
|