"use strict"; const mongoose = require('mongoose'); const Schema = mongoose.Schema; const LogKillSchema = new Schema({ war: { type: mongoose.Schema.Types.ObjectId, ref: 'War', required: true }, time: { type: Date, required: true }, shooter: { type: String, required: true }, target: { type: String, required: true }, friendlyFire: { type: Boolean, required: true } }, { collection: 'logKill' }); // optional more indices LogKillSchema.index({war: 1, shooter: 1, target: 1}); module.exports = mongoose.model('LogKill', LogKillSchema);