UNPKG

194 BJavaScriptView Raw
1var moongoose = require('mongoose');
2
3var ClockSchema = new moongoose.Schema({
4
5 lastUpdate: { type: Date, default: Date.now },
6
7});
8module.exports = moongoose.model('lastUpdate', ClockSchema);
\No newline at end of file