1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 18:52:50 +00:00
This commit is contained in:
2015-06-24 14:58:49 -05:00
parent a2c44e494f
commit cfec58df9a
6 changed files with 53 additions and 21 deletions

View File

@@ -1,10 +1,11 @@
var mongoose = require('mongoose');
var infoSchema = new mongoose.Schema({
number: Number,
date: Number,
time: Number,
message: String
number: String,
date: Date,
time: String,
message: String,
updated: {type: Date, default: Date.now}
});