opt-cc/server/models/war.js

76 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-03-12 09:26:44 +01:00
'use strict';
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const WarSchema = new Schema({
2017-07-08 22:50:01 +02:00
title: {
type: String,
2018-03-12 09:26:44 +01:00
required: true,
2017-07-08 22:50:01 +02:00
},
date: {
type: Date,
},
2018-02-26 09:04:27 +01:00
endDate: {
type: Date,
},
ptBlufor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
},
ptOpfor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
},
2017-07-30 08:55:14 +02:00
playersBlufor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
2017-07-30 08:55:14 +02:00
},
playersOpfor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
2017-08-12 16:28:18 +02:00
},
campaign: {
type: mongoose.Schema.Types.ObjectId,
2017-10-21 12:11:32 +02:00
ref: 'Campaign',
2018-03-12 09:26:44 +01:00
required: true,
2017-10-21 12:11:32 +02:00
},
budgetBlufor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
2017-10-21 12:11:32 +02:00
},
budgetOpfor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
2017-10-21 12:11:32 +02:00
},
endBudgetBlufor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
2017-10-21 12:11:32 +02:00
},
endBudgetOpfor: {
type: Number,
2018-03-12 09:26:44 +01:00
get: (v) => Math.round(v),
set: (v) => Math.round(v),
default: 0,
},
}, {
collection: 'war',
2018-03-12 09:26:44 +01:00
timestamps: {createdAt: 'timestamp'},
});
// optional more indices
WarSchema.index({timestamp: 1});
module.exports = mongoose.model('War', WarSchema);