dropDups
का उपयोग करें अपने स्कीमा में डुप्लिकेट रिकॉर्ड छोड़ना सुनिश्चित करने के लिए;
var SimSchema = new Schema({
msisdn : { type : String , unique : true, required : true, dropDups: true },
imsi : { type : String , unique : true, required : true, dropDups: true },
status : { type : Boolean, default: true},
signal : { type : Number },
probe_name : { type: String , required : true }
});
और अपने परीक्षण चलाने से पहले, मोंगोडब को पुनः आरंभ करें