diff options
author | Maxime Quandalle <mquandalle@wekan.io> | 2016-07-18 22:38:38 +0200 |
---|---|---|
committer | Maxime Quandalle <mquandalle@wekan.io> | 2016-07-18 22:38:38 +0200 |
commit | 9792193e605a8df8989c36e1e4edad25464aa442 (patch) | |
tree | 248750df6e619afc20c4fdc848da63a3d3c526a3 /models/lists.js | |
parent | 81a35be8562cb6c28848afc2cb24ae9ec145ce47 (diff) | |
download | wekan-9792193e605a8df8989c36e1e4edad25464aa442.tar.gz wekan-9792193e605a8df8989c36e1e4edad25464aa442.tar.bz2 wekan-9792193e605a8df8989c36e1e4edad25464aa442.zip |
Add MongoDB indexes
These indexes will optimize the queries that are used in the board and card
views.
Fixes #524.
Diffstat (limited to 'models/lists.js')
-rw-r--r-- | models/lists.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/models/lists.js b/models/lists.js index a4938f67..9ae2e4f7 100644 --- a/models/lists.js +++ b/models/lists.js @@ -91,6 +91,10 @@ Lists.mutations({ Lists.hookOptions.after.update = { fetchPrevious: false }; if (Meteor.isServer) { + Meteor.startup(() => { + Lists._collection._ensureIndex({ boardId: 1 }); + }); + Lists.after.insert((userId, doc) => { Activities.insert({ userId, |