opt-cc/server/models/logs/kill.js

49 lines
829 B
JavaScript
Raw Normal View History

2018-03-12 09:26:44 +01:00
'use strict';
2017-10-21 18:23:04 +02:00
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const LogKillSchema = new Schema({
war: {
type: mongoose.Schema.Types.ObjectId,
ref: 'War',
2018-03-12 09:26:44 +01:00
required: true,
2017-10-21 18:23:04 +02:00
},
time: {
2017-10-29 17:36:55 +01:00
type: Date,
2018-03-12 09:26:44 +01:00
required: true,
2017-10-21 18:23:04 +02:00
},
shooter: {
2018-03-12 09:26:44 +01:00
type: String,
2017-10-21 18:23:04 +02:00
},
target: {
type: String,
2018-03-12 09:26:44 +01:00
required: true,
2017-10-21 18:23:04 +02:00
},
friendlyFire: {
type: Boolean,
2018-03-12 09:26:44 +01:00
required: true,
},
magazine: {
type: String,
},
shooterVehicle: {
type: String,
},
targetVehicle: {
type: String,
},
fraction: {
type: String,
enum: ['BLUFOR', 'OPFOR', 'NONE'],
2018-03-12 09:26:44 +01:00
required: true,
},
2017-10-21 18:23:04 +02:00
}, {
2018-03-12 09:26:44 +01:00
collection: 'logKill',
versionKey: false,
2017-10-21 18:23:04 +02:00
});
// optional more indices
LogKillSchema.index({war: 1, shooter: 1, target: 1});
module.exports = mongoose.model('LogKill', LogKillSchema);