codecombat/server/analytics/AnalyticsLogEvent.coffee
2014-12-15 11:45:12 -08:00

10 lines
289 B
CoffeeScript

mongoose = require 'mongoose'
plugins = require '../plugins/plugins'
AnalyticsLogEventSchema = new mongoose.Schema({
created:
type: Date
'default': Date.now
}, {strict: false})
module.exports = AnalyticsLogEvent = mongoose.model('analytics.log.event', AnalyticsLogEventSchema)