mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
3d32c8a5e7
These indexes are on the production database but not set in our mongoose schemas.
17 lines
600 B
CoffeeScript
17 lines
600 B
CoffeeScript
mongoose = require 'mongoose'
|
|
plugins = require '../plugins/plugins'
|
|
|
|
AnalyticsLogEventSchema = new mongoose.Schema({
|
|
u: mongoose.Schema.Types.ObjectId
|
|
e: Number # event analytics.string ID
|
|
p: mongoose.Schema.Types.Mixed
|
|
|
|
# TODO: Remove these legacy properties after we stop querying for them (probably 30 days, ~2/16/15)
|
|
user: mongoose.Schema.Types.ObjectId
|
|
event: String
|
|
properties: mongoose.Schema.Types.Mixed
|
|
}, {strict: false})
|
|
|
|
AnalyticsLogEventSchema.index({event: 1, _id: 1})
|
|
|
|
module.exports = AnalyticsLogEvent = mongoose.model('analytics.log.event', AnalyticsLogEventSchema)
|