UNPKG

260 BJavaScriptView Raw
1var mongoose = require('mongoose');
2var Schema = mongoose.Schema;
3
4exports.User = mongoose.model('User', new Schema({
5 createdAt: Date,
6 updatedAt: {
7 type: Date,
8 default: Date.now
9 },
10 firstName: String,
11 lastName: String,
12 fullName: String
13}));