Which SchemaType in Mongoose is Best for Timestamp?

后端 未结 6 1749
予麋鹿
予麋鹿 2020-12-07 16:08

I\'m using Mongoose, MongoDB, and Node.

I would like to define a schema where one of its fields is a date\\timestamp.

I would like to use this field in order

6条回答
  •  有刺的猬
    2020-12-07 16:44

    var ItemSchema = new Schema({
        name : { type: String }
    });
    
    ItemSchema.set('timestamps', true); // this will add createdAt and updatedAt timestamps
    

    Docs: https://mongoosejs.com/docs/guide.html#timestamps

提交回复
热议问题