Merge pull request #705 from nitsujlangston/addEmailQueueIdIndex

adding needed index for email_queue.id
This commit is contained in:
Matias Alejo Garcia 2017-10-02 10:01:57 -03:00 committed by GitHub
commit 15de4716f7
1 changed files with 4 additions and 1 deletions

View File

@ -64,6 +64,9 @@ Storage.prototype._createIndexes = function() {
this.db.collection(collections.ADDRESSES).createIndex({
address: 1,
});
this.db.collection(collections.EMAIL_QUEUE).createIndex({
id: 1,
});
this.db.collection(collections.EMAIL_QUEUE).createIndex({
notificationId: 1,
});
@ -628,7 +631,7 @@ Storage.prototype.storeActiveAddresses = function(walletId, addresses, cb) {
};
// -------- --------------------------- Total
// > Time >
// > Time >
// ^to <= ^from
// ^fwdIndex => ^end
Storage.prototype.getTxHistoryCache = function(walletId, from, to, cb) {