codecombat/server/levels/feedbacks/LevelFeedback.coffee
Sébastien Moratinos 729cd300b7 server reorganize files and folder by features
- move and rename files
- use associative arrays which store handlers for 'dynamically'
  load module from de db route
- store models_path in test/server/common,
  a global model variable has the same name that the filename of the model
2014-01-23 01:01:40 +01:00

13 lines
No EOL
438 B
CoffeeScript

# TODO: not updated since rename from level_instance, or since we redid how all models are done; probably busted
mongoose = require('mongoose')
plugins = require('../../plugins/plugins')
jsonschema = require('./level_feedback_schema')
LevelFeedbackSchema = new mongoose.Schema({
created:
type: Date
'default': Date.now
}, {strict: false})
module.exports = LevelFeedback = mongoose.model('level.feedback', LevelFeedbackSchema)