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 LogFlagSchema = 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
|
|
|
},
|
|
|
|
player: {
|
|
|
|
type: String,
|
2018-03-12 09:26:44 +01:00
|
|
|
required: true,
|
2017-10-21 18:23:04 +02:00
|
|
|
},
|
|
|
|
flagFraction: {
|
|
|
|
type: String,
|
|
|
|
enum: ['BLUFOR', 'OPFOR'],
|
2018-03-12 09:26:44 +01:00
|
|
|
required: true,
|
2017-10-21 18:23:04 +02:00
|
|
|
},
|
|
|
|
capture: {
|
|
|
|
type: Boolean,
|
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: 'logFlag',
|
2017-10-21 18:23:04 +02:00
|
|
|
});
|
|
|
|
// optional more indices
|
|
|
|
LogFlagSchema.index({war: 1, player: 1});
|
|
|
|
|
|
|
|
module.exports = mongoose.model('LogFlag', LogFlagSchema);
|