codecombat/server/payments/Payment.coffee

8 lines
335 B
CoffeeScript
Raw Normal View History

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)