mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
13 lines
506 B
CoffeeScript
13 lines
506 B
CoffeeScript
mongoose = require('mongoose')
|
|
|
|
ScoringTaskSchema = new mongoose.Schema(
|
|
createdAt: {type: Date, expires: 3600} #expire document 1 hour after they are created
|
|
calculator: {type:mongoose.Schema.Types.ObjectId}
|
|
sentDate: {type: Number}
|
|
messageIdentifierString: {type: String}
|
|
calculationTimeMS: {type: Number, default: 0}
|
|
sessions: {type: Array, default: []}
|
|
)
|
|
|
|
#ScoringTaskSchema.set 'capped', 104857600 #100MB capped collection
|
|
module.exports = mongoose.model('scoringTask', ScoringTaskSchema)
|