mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
6 lines
268 B
CoffeeScript
6 lines
268 B
CoffeeScript
mongoose = require('mongoose')
|
|
|
|
PurchaseSchema = new mongoose.Schema({status: String}, {strict: false})
|
|
PurchaseSchema.index({recipient: 1, 'purchased.original': 1}, {unique: true, name: 'unique purchase'})
|
|
|
|
module.exports = mongoose.model('purchase', PurchaseSchema)
|