mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
10 lines
291 B
CoffeeScript
10 lines
291 B
CoffeeScript
|
mongoose = require 'mongoose'
|
||
|
|
||
|
AnalyticsStripeInvoiceSchema = new mongoose.Schema({
|
||
|
_id: String
|
||
|
date: Number
|
||
|
properties: mongoose.Schema.Types.Mixed
|
||
|
}, {strict: false})
|
||
|
|
||
|
module.exports = AnalyticsStripeInvoice = mongoose.model('analytics.stripe.invoice', AnalyticsStripeInvoiceSchema)
|