Fixed MongoDB collection names.

This commit is contained in:
Ylian Saint-Hilaire 2019-02-18 18:29:13 -08:00
parent d081396d4b
commit b9d7474a7d
1 changed files with 2 additions and 2 deletions

4
db.js
View File

@ -60,7 +60,7 @@ module.exports.CreateDB = function (parent) {
}); });
// Setup MongoDB events collection and indexes // Setup MongoDB events collection and indexes
obj.eventsfile = db.collection(dbcollection + '-events'); // Collection containing all events obj.eventsfile = db.collection('events'); // Collection containing all events
obj.eventsfile.getIndexes(function (err, indexes) { obj.eventsfile.getIndexes(function (err, indexes) {
// Check if we need to reset indexes // Check if we need to reset indexes
var indexesByName = {}, indexCount = 0; var indexesByName = {}, indexCount = 0;
@ -82,7 +82,7 @@ module.exports.CreateDB = function (parent) {
}); });
// Setup MongoDB power events collection and indexes // Setup MongoDB power events collection and indexes
obj.powerfile = db.collection(dbcollection + '-power'); // Collection containing all power events obj.powerfile = db.collection('power'); // Collection containing all power events
obj.powerfile.getIndexes(function (err, indexes) { obj.powerfile.getIndexes(function (err, indexes) {
// Check if we need to reset indexes // Check if we need to reset indexes
var indexesByName = {}, indexCount = 0; var indexesByName = {}, indexCount = 0;