Merge pull request #9455 from overleaf/em-recreate-dropbox-entities
Recreate the dropboxEntities collection with new indexes GitOrigin-RevId: 46e503864cd8b1671072efb05f43b1d4582f35b6
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
const Helpers = require('./lib/helpers')
|
||||
|
||||
exports.tags = ['saas']
|
||||
|
||||
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' } },
|
||||
]
|
||||
|
||||
exports.migrate = async client => {
|
||||
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)
|
||||
}
|
||||
|
||||
exports.rollback = async client => {
|
||||
const { db } = client
|
||||
await Helpers.dropIndexesFromCollection(db.dropboxEntities, indexes)
|
||||
}
|
||||
Reference in New Issue
Block a user