박권수

db. model method is going

......@@ -3,7 +3,7 @@ const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const BottleSchema = new Schema ({
bottleId : { type : String, required : true, unique : true },
bottleId : { type : Number, required : true, unique : true },
temperature : { type : Number, default : 0 },
humidity : { type : Number, default : 0 },
balance : { type : Number, default : 0 },
......
......@@ -4,7 +4,7 @@ const Schema = mongoose.Schema;
const HubSchema = new Schema ({
hubId : { type : Number, required : true, unique : true },
hosting : Object,
hosting : { type : Object, default : null },
userId : { type : String, default : null },
});
......