mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #6297 from overleaf/jpa-fix-index
[web] migrations: fix_saml_indexes: add missing unique flag GitOrigin-RevId: 6a9d7ac58edcca27ec2b4bb7ab6e78d75053bbaf
This commit is contained in:
parent
eef5cd00e3
commit
a6625e872f
1 changed files with 6 additions and 1 deletions
|
@ -7,7 +7,12 @@ exports.tags = ['saas']
|
|||
exports.migrate = async ({ db }) => {
|
||||
// Fix-up the previous SAML migrations that were operating on collections with
|
||||
// typos in their names.
|
||||
await Helpers.addIndexesToCollection(db.users, usersIndexes)
|
||||
await Helpers.addIndexesToCollection(
|
||||
db.users,
|
||||
usersIndexes.map(index => {
|
||||
return Object.assign({}, index, { unique: true })
|
||||
})
|
||||
)
|
||||
await Helpers.addIndexesToCollection(db.samlLogs, samlLogsIndexes)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue