mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
11 lines
329 B
CoffeeScript
11 lines
329 B
CoffeeScript
mongoose = require('mongoose')
|
|
plugins = require('../../plugins/plugins')
|
|
jsonschema = require('../../../app/schemas/models/user_remark')
|
|
|
|
UserRemarkSchema = new mongoose.Schema({
|
|
created:
|
|
type: Date
|
|
'default': Date.now
|
|
}, {strict: false})
|
|
|
|
module.exports = UserRemark = mongoose.model('user.remark', UserRemarkSchema)
|