mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
13 lines
No EOL
690 B
CoffeeScript
13 lines
No EOL
690 B
CoffeeScript
mongoose = require('mongoose')
|
|
jsonschema = require('../../app/schemas/models/achievement')
|
|
|
|
# `pre` and `post` are not called for update operations executed directly on the database,
|
|
# including `Model.update`,`.findByIdAndUpdate`,`.findOneAndUpdate`, `.findOneAndRemove`,and `.findByIdAndRemove`.order
|
|
# to utilize `pre` or `post` middleware, you should `find()` the document, and call the `init`, `validate`, `save`,
|
|
# or `remove` functions on the document. See [explanation](http://github.com/LearnBoost/mongoose/issues/964).
|
|
|
|
AchievementSchema = new mongoose.Schema({
|
|
query: Object
|
|
}, {strict: false})
|
|
|
|
module.exports = Achievement = mongoose.model('achievements', AchievementSchema) |