UNPKG

@dreesq/serpent

Version:

An express wrapper for developing fast web applications

18 lines (16 loc) 286 B
/** * Task Schema */ module.exports = Schema => { return new Schema({ title: String, userId: { type: Schema.ObjectId, references: 'user' }, test: { default: 'test', type: String } }); };