mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
11 lines
317 B
CoffeeScript
11 lines
317 B
CoffeeScript
mongoose = require 'mongoose'
|
|
plugins = require '../../plugins/plugins'
|
|
jsonschema = require '../../../app/schemas/models/mail_sent'
|
|
|
|
MailSent = new mongoose.Schema({
|
|
sent:
|
|
type: Date
|
|
'default': Date.now
|
|
}, {strict:false, minimize: false})
|
|
|
|
module.exports = MailSent = mongoose.model('mail.sent', MailSent)
|