【发布时间】:2021-10-23 06:41:13
【问题描述】:
我有如下架构,我只想在创建 4 小时后删除令牌日期我尝试了 expire:"4 hour" 但这会删除所有文档:
const driverSchema: Schema = new Schema({
name: { type: String, required: true },
lastName: { type: String, required: true },
email: {
type: String,
required: true,
unique: true,
},
phone: {
type: String,
required: true,
},
creationDate: {
type: Date,
required: true,
},
password: {
type: String,
required: true,
},
token: {
type: String,
},
});
【问题讨论】: