mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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:
parent
4d7e6d2707
commit
07e5d1ba90
2 changed files with 24 additions and 0 deletions
|
@ -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)
|
||||
}
|
|
@ -28,6 +28,7 @@ class Adapter {
|
|||
await addCollection('projectImportFailures')
|
||||
await addCollection('samllog')
|
||||
await addCollection('user')
|
||||
await addCollection('splittests')
|
||||
|
||||
return { db }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue