Merge pull request #5229 from overleaf/ab-splittest-name-index

Add migration to create unique index on splittests name

GitOrigin-RevId: d7420ad714a09abedafb7462b51b3c403c9a026b
This commit is contained in:
Alexandre Bourdin 2021-09-30 17:27:37 +02:00 committed by Copybot
parent 4d7e6d2707
commit 07e5d1ba90
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,23 @@
const Helpers = require('./lib/helpers')
exports.tags = ['saas']
const indexes = [
{
key: {
name: 1,
},
unique: true,
name: 'name_1',
},
]
exports.migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.splittests, indexes)
}
exports.rollback = async client => {
const { db } = client
Helpers.dropIndexesFromCollection(db.splittests, indexes)
}

View file

@ -28,6 +28,7 @@ class Adapter {
await addCollection('projectImportFailures')
await addCollection('samllog')
await addCollection('user')
await addCollection('splittests')
return { db }
}