1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00

more graph work

This commit is contained in:
2015-12-20 21:11:54 -06:00
parent 700ecf3e75
commit daab977655
7 changed files with 316 additions and 72 deletions

View File

@@ -3,7 +3,7 @@ var mongoose = require('mongoose');
var temperatureSchema = new mongoose.Schema({
temperature: Number,
humidity: Number,
location: String,
location: {type : String, default : "Undefined Location"},
updated: {type: Date, default: Date.now}
});