From ee5ff397f8b94dba6b88b35147830d3869c406f6 Mon Sep 17 00:00:00 2001 From: Andrew Rumble Date: Mon, 10 Nov 2025 13:17:34 +0000 Subject: [PATCH] Remove docHistoryIndex collection from db helpers GitOrigin-RevId: 02a2c2291e1b7cb92558e2b1091275bd6cd15e5b --- services/web/app/src/infrastructure/mongodb.js | 1 - tools/migrations/lib/mongodb.mjs | 1 - 2 files changed, 2 deletions(-) diff --git a/services/web/app/src/infrastructure/mongodb.js b/services/web/app/src/infrastructure/mongodb.js index 81e78129d0..e258997321 100644 --- a/services/web/app/src/infrastructure/mongodb.js +++ b/services/web/app/src/infrastructure/mongodb.js @@ -39,7 +39,6 @@ const db = { deletedUsers: internalDb.collection('deletedUsers'), dropboxEntities: internalDb.collection('dropboxEntities'), dropboxProjects: internalDb.collection('dropboxProjects'), - docHistoryIndex: internalDb.collection('docHistoryIndex'), docSnapshots: internalDb.collection('docSnapshots'), docs: internalDb.collection('docs'), feedbacks: internalDb.collection('feedbacks'), diff --git a/tools/migrations/lib/mongodb.mjs b/tools/migrations/lib/mongodb.mjs index bd3fe1f8aa..b692783c76 100644 --- a/tools/migrations/lib/mongodb.mjs +++ b/tools/migrations/lib/mongodb.mjs @@ -18,7 +18,6 @@ export const db = { deletedUsers: internalDb.collection('deletedUsers'), dropboxEntities: internalDb.collection('dropboxEntities'), dropboxProjects: internalDb.collection('dropboxProjects'), - docHistoryIndex: internalDb.collection('docHistoryIndex'), docSnapshots: internalDb.collection('docSnapshots'), docs: internalDb.collection('docs'), feedbacks: internalDb.collection('feedbacks'),