From 0036ad5f318661789e236391379669986cfd6038 Mon Sep 17 00:00:00 2001 From: Andrew Rumble Date: Thu, 23 Oct 2025 12:00:34 +0100 Subject: [PATCH] Remove docHistory collection from db helper Co-authored-by: Ilkin Ismailov GitOrigin-RevId: 788b794ff75564230df99b1b726da87bab468ef9 --- 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 737bcf023d..81e78129d0 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'), - docHistory: internalDb.collection('docHistory'), docHistoryIndex: internalDb.collection('docHistoryIndex'), docSnapshots: internalDb.collection('docSnapshots'), docs: internalDb.collection('docs'), diff --git a/tools/migrations/lib/mongodb.mjs b/tools/migrations/lib/mongodb.mjs index 993794463c..bd3fe1f8aa 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'), - docHistory: internalDb.collection('docHistory'), docHistoryIndex: internalDb.collection('docHistoryIndex'), docSnapshots: internalDb.collection('docSnapshots'), docs: internalDb.collection('docs'),