mongoose-types
mongoose-types copied to clipboard
Fixed issue with BinaryParser not being exported from mongoose.mongo, ca...
...using an exception, and breaking things with newer releases of mongoose.
Thanks for this!
In coffee script!
mongoose = require 'mongoose'
module.exports = (schema, options) ->
schema.add
createdAt: Date
updatedAt: Date
schema.pre 'save', (next) ->
now = new Date
if !@createdAt
@createdAt = now
@updatedAt = now
next()
Any updates on this issue?
Is Mongoose-types active now?