codecombat/server/analytics/AnalyticsLogEvent.coffee

8 lines
288 B
CoffeeScript
Raw Normal View History

2014-12-15 14:45:12 -05:00
mongoose = require 'mongoose'
plugins = require '../plugins/plugins'
AnalyticsLogEventSchema = new mongoose.Schema({}, {strict: false})
AnalyticsLogEventSchema.index({event: 1, _id: 1})
2014-12-15 14:45:12 -05:00
module.exports = AnalyticsLogEvent = mongoose.model('analytics.log.event', AnalyticsLogEventSchema)