mongodb集合中的共同属性

时间:2015-09-26 10:17:07

标签: mongodb collections mongoose timestamp schema

我正在研究MongoDB,在编写集合时,我想在集合中设置一个属性以获得'整个集合最后一次更新的时间是什么? [不是架构的一部分]。有办法吗?

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var UserSchema = new Schema({
    name : {type : String},
    email : {type : String, unique : true, trim : true,  sparse : true, index : true},
    phone : {type : String, required : true, unique : true },
    address : {type : String},
    dob : {type : String}
});

module.exports = mongoose.model('User',UserSchema);

谢谢!

0 个答案:

没有答案