mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9e15c73228
Revert "Revert "Convert migration scripts to ESM"" GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
28 lines
794 B
JavaScript
28 lines
794 B
JavaScript
import Helpers from './lib/helpers.mjs'
|
|
import SamlLogsIndexesMigration from './20191106102104_saml-log-indexes.mjs'
|
|
import SamlIndentifiersIndexMigration from './20191107191318_saml-indentifiers-index.mjs'
|
|
|
|
const { samlLogsIndexes } = SamlLogsIndexesMigration
|
|
const { usersIndexes } = SamlIndentifiersIndexMigration
|
|
|
|
const tags = ['saas']
|
|
|
|
const 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)
|
|
}
|
|
|
|
const rollback = async () => {}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|