mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
7 lines
335 B
CoffeeScript
7 lines
335 B
CoffeeScript
mongoose = require('mongoose')
|
|
config = require '../../server_config'
|
|
|
|
PaymentSchema = new mongoose.Schema({}, {strict: false, read:config.mongo.readpref})
|
|
PaymentSchema.index({recipient: 1, 'stripe.timestamp': 1, 'ios.transactionID'}, {unique: true, name: 'unique payment'})
|
|
|
|
module.exports = mongoose.model('payment', PaymentSchema)
|