mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
35 lines
845 B
CoffeeScript
35 lines
845 B
CoffeeScript
|
mongoose = require 'mongoose'
|
||
|
config = require '../../server_config'
|
||
|
|
||
|
CodeLogSchema = new mongoose.Schema({
|
||
|
created:
|
||
|
type: Date
|
||
|
default: Date.now
|
||
|
userID:
|
||
|
type: mongoose.Schema.ObjectId
|
||
|
sessionID:
|
||
|
type: mongoose.Schema.ObjectId
|
||
|
level:
|
||
|
original:
|
||
|
type: mongoose.Schema.ObjectId
|
||
|
majorVersion:
|
||
|
type: Number
|
||
|
default: 0
|
||
|
}, {strict: false, read: config.mongo.readpref})
|
||
|
|
||
|
CodeLogSchema.index({levelSlug: 1, created: -1}, {name: 'level slug index'})
|
||
|
CodeLogSchema.index({userID: 1, created: -1}, {name: 'user id index'})
|
||
|
|
||
|
CodeLogSchema.statics.editableProperties = [
|
||
|
'sessionID'
|
||
|
'level'
|
||
|
'levelSlug'
|
||
|
'userID'
|
||
|
'log'
|
||
|
'created'
|
||
|
]
|
||
|
|
||
|
CodeLogSchema.statics.jsonSchema = require '../../app/schemas/models/codelog.schema'
|
||
|
|
||
|
module.exports = CodeLog = mongoose.model('CodeLog', CodeLogSchema, 'codelogs')
|