codecombat/server/queues/task/ScoringTask.coffee

13 lines
438 B
CoffeeScript
Raw Normal View History

2014-06-30 22:16:26 -04:00
mongoose = require 'mongoose'
2014-02-07 18:52:24 -05:00
ScoringTaskSchema = new mongoose.Schema(
createdAt: {type: Date, expires: 3600} #expire document 1 hour after they are created
2014-06-30 22:16:26 -04:00
calculator: {type: mongoose.Schema.Types.ObjectId}
sentDate: {type: Number}
2014-02-07 18:52:24 -05:00
messageIdentifierString: {type: String}
calculationTimeMS: {type: Number, default: 0}
sessions: {type: Array, default: []}
)
module.exports = mongoose.model('scoringTask', ScoringTaskSchema)