diff options
author | Alexis LACROIX <alexis.lacroix@orange.com> | 2017-02-22 15:03:33 +0100 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2017-02-22 17:05:30 +0200 |
commit | 6ca832c02b2fa87720005f277b3fcb21dcf5ae6f (patch) | |
tree | 46083001472636f51ea2806bb0afb26afe1f852a /models/boards.js | |
parent | cd6317cedbd9815284d4e533f00fbc75c8e06afc (diff) | |
download | wekan-6ca832c02b2fa87720005f277b3fcb21dcf5ae6f.tar.gz wekan-6ca832c02b2fa87720005f277b3fcb21dcf5ae6f.tar.bz2 wekan-6ca832c02b2fa87720005f277b3fcb21dcf5ae6f.zip |
Improve wekan performance (checklist collection scan)
Diffstat (limited to 'models/boards.js')
-rw-r--r-- | models/boards.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/models/boards.js b/models/boards.js index 0f66e9d6..9323d690 100644 --- a/models/boards.js +++ b/models/boards.js @@ -414,9 +414,7 @@ if (Meteor.isServer) { _id: 1, 'members.userId': 1, }, { unique: true }); - Boards._collection._ensureIndex({ - 'members.userId': 1, - }, { unique: true }); + Boards._collection._ensureIndex({'members.userId': 1}); }); // Genesis: the first activity of the newly created board |