remove version key from db log entries

pull/51/head
HardiReady 2019-02-09 14:24:14 +01:00
parent 3c02c353e7
commit de05260298
10 changed files with 9 additions and 0 deletions

Binary file not shown.

View File

@ -32,6 +32,7 @@ const LogBudgetSchema = new Schema({
},
}, {
collection: 'logBudget',
versionKey: false
});
// optional more indices
LogBudgetSchema.index({war: 1});

View File

@ -28,6 +28,7 @@ const LogFlagSchema = new Schema({
},
}, {
collection: 'logFlag',
versionKey: false
});
// optional more indices
LogFlagSchema.index({war: 1, player: 1});

View File

@ -40,6 +40,7 @@ const LogKillSchema = new Schema({
},
}, {
collection: 'logKill',
versionKey: false
});
// optional more indices
LogKillSchema.index({war: 1, shooter: 1, target: 1});

View File

@ -27,6 +27,7 @@ const LogPlayerCountSchema = new Schema({
},
}, {
collection: 'logPlayerCount',
versionKey: false
});
// optional more indices
LogPlayerCountSchema.index({war: 1});

View File

@ -32,6 +32,7 @@ const LogKillSchema = new Schema({
},
}, {
collection: 'logPoints',
versionKey: false
});
// optional more indices
LogKillSchema.index({war: 1, shooter: 1, target: 1});

View File

@ -19,6 +19,7 @@ const LogRespawnSchema = new Schema({
},
}, {
collection: 'logRespawn',
versionKey: false
});
// optional more indices
LogRespawnSchema.index({war: 1, player: 1});

View File

@ -32,6 +32,7 @@ const LogReviveSchema = new Schema({
},
}, {
collection: 'logRevive',
versionKey: false
});
// optional more indices
LogReviveSchema.index({war: 1, medic: 1});

View File

@ -34,6 +34,7 @@ const LogTransportSchema = new Schema({
},
}, {
collection: 'logTransport',
versionKey: false
});
// optional more indices
LogTransportSchema.index({war: 1, driver: 1});

View File

@ -41,6 +41,7 @@ const LogVehicleKillSchema = new Schema({
},
}, {
collection: 'logVehicle',
versionKey: false
});
// optional more indices
LogVehicleKillSchema.index({war: 1, shooter: 1, target: 1});