소스 검색

Merge pull request #6297 from overleaf/jpa-fix-index

[web] migrations: fix_saml_indexes: add missing unique flag

GitOrigin-RevId: 6a9d7ac58edcca27ec2b4bb7ab6e78d75053bbaf
Jakob Ackermann 4 년 전
부모
커밋
a6625e872f
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      services/web/migrations/20220105130000_fix_saml_indexes.js

+ 6 - 1
services/web/migrations/20220105130000_fix_saml_indexes.js

@@ -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)
 }