Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -3,7 +3,7 @@ const mongoose = require('mongoose'); | ... | @@ -3,7 +3,7 @@ const mongoose = require('mongoose'); |
3 | const Schema = mongoose.Schema; | 3 | const Schema = mongoose.Schema; |
4 | 4 | ||
5 | const BottleSchema = new Schema ({ | 5 | const BottleSchema = new Schema ({ |
6 | - bottleId : { type : String, required : true, unique : true }, | 6 | + bottleId : { type : Number, required : true, unique : true }, |
7 | temperature : { type : Number, default : 0 }, | 7 | temperature : { type : Number, default : 0 }, |
8 | humidity : { type : Number, default : 0 }, | 8 | humidity : { type : Number, default : 0 }, |
9 | balance : { type : Number, default : 0 }, | 9 | balance : { type : Number, default : 0 }, | ... | ... |
... | @@ -4,7 +4,7 @@ const Schema = mongoose.Schema; | ... | @@ -4,7 +4,7 @@ const Schema = mongoose.Schema; |
4 | 4 | ||
5 | const HubSchema = new Schema ({ | 5 | const HubSchema = new Schema ({ |
6 | hubId : { type : Number, required : true, unique : true }, | 6 | hubId : { type : Number, required : true, unique : true }, |
7 | - hosting : Object, | 7 | + hosting : { type : Object, default : null }, |
8 | userId : { type : String, default : null }, | 8 | userId : { type : String, default : null }, |
9 | }); | 9 | }); |
10 | 10 | ... | ... |
-
Please register or login to post a comment