박권수

db. bottle has dosage field

......@@ -8,8 +8,9 @@ const BottleSchema = new Schema ({
humidity : { type : Number, default : 0 },
balance : { type : Number, default : 0 },
recentOpen : { type : Date, default : Date.now },
medicineId : Number,
hubId : Number
medicineId : { type : Number, default : null, },
hubId : Number,
dosage : { type : Number, default : 0 }
})
BottleSchema.statics.findByBottleId = function(bottleId) {
......@@ -36,6 +37,10 @@ BottleSchema.methods.getBalance = function() {
return this.balance;
};
BottleSchema.methods.getDosage = function() {
return this.dosage;
};
BottleSchema.methods.getMedicineId = function() {
return this.medicineId;
};
......
......@@ -5,7 +5,7 @@ const jwt = require('jsonwebtoken');
const Schema = mongoose.Schema;
const UserSchema = new Schema({
userId : { type: String, require : true, unique : true },
userId : { type: String, require : true, unique : true, lowercase : true },
hashedPassword : { type : String, default : null }
});
......