박권수

db. some schema is changed

......@@ -4,10 +4,16 @@ const Schema = mongoose.Schema;
const BottleSchema = new Schema ({
bottleId : { type : String, required : true, unique : true },
balance : Number,
recentOpen : Date,
temperature : { type : Number, default : 0 },
humidity : { type : Number, default : 0 },
balance : { type : Number, default : 0 },
recentOpen : { type : Date, default : Date.now },
medicineId : Number,
hubId : Number
})
BottleSchema.statics.findByBottleId = function(bottleId) {
return this.findOne({ bottleId });
};
module.exports = mongoose.model('Bottle', BottleSchema);
\ No newline at end of file
......
......@@ -9,7 +9,7 @@ const MedicineSchema = new Schema ({
target : { type : String, required : true },
dosage : { type : String, required : true },
warn : { type : String, required : true },
antiEffect : String
antiEffect : { type : String, required : true }
})
MedicineSchema.statics.findByName = async function(name) {
......