Mongoose Not Creating Indexes

前端 未结 6 888
旧时难觅i
旧时难觅i 2020-12-01 17:49

Trying to create MongoDB indexes. Using the Mongoose ODM and in my schema definition below I have the username field set to a unique index. The collection and document all g

6条回答
  •  暖寄归人
    2020-12-01 18:45

    It might be solve your problem

    var schema = mongoose.Schema({
    speed: Number,
    watchDate: Number,
    meterReading: Number,
    status: Number,
    openTrack: Boolean,
     });
    schema.index({ openTrack: 1 });
    

提交回复
热议问题