mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a6625e872f
[web] migrations: fix_saml_indexes: add missing unique flag GitOrigin-RevId: 6a9d7ac58edcca27ec2b4bb7ab6e78d75053bbaf
19 lines
623 B
JavaScript
19 lines
623 B
JavaScript
const Helpers = require('./lib/helpers')
|
|
const { samlLogsIndexes } = require('./20191106102104_saml-log-indexes')
|
|
const { usersIndexes } = require('./20191107191318_saml-indentifiers-index')
|
|
|
|
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.map(index => {
|
|
return Object.assign({}, index, { unique: true })
|
|
})
|
|
)
|
|
await Helpers.addIndexesToCollection(db.samlLogs, samlLogsIndexes)
|
|
}
|
|
|
|
exports.rollback = async () => {}
|