标签: express mongoose
我在ExpressJS webapp中使用mongoose,我想在一段时间后更改架构中的一些布尔值。 试图使用“过期” - 但说明说它只适用于Date值。 我还能做什么?
var someSchema = new mongoose.Schema({ isactive: { type: Boolean, default: true} });