mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
3fd5f49220
Add analytics per-day aggregation collection. Add analytics strings collection. Add per-day aggregation mongo insertion script. Update campaign editor to use aggregation collection. Update queries to use _id instead of created field.
12 lines
608 B
CoffeeScript
12 lines
608 B
CoffeeScript
mongoose = require 'mongoose'
|
|
|
|
AnalyticsPerDaySchema = new mongoose.Schema({
|
|
e: {type: Number} # event (analytics string ID from analytics.strings)
|
|
l: {type: Number} # level (analytics string ID from analytics.strings)
|
|
f: {type: Number} # filter (analytics string ID from analytics.strings)
|
|
fv: {type: Number} # filter value (analytics string ID from analytics.strings)
|
|
c: {type: Number} # count
|
|
}, {strict: false})
|
|
|
|
# TODO: Why can't we query against a collection with caps, like 'analytics.perDay'?
|
|
module.exports = AnalyticsPerDay = mongoose.model('analytics.perday', AnalyticsPerDaySchema)
|