const notificationSchema = mongoose.Schema({
type:{
type: String
},
message:{
type: String
},
userId:{
type: String,
required: true,
},
timestamp:{
type: Date,
default: new Date()
},
expireAt: {
type: Date,
default: Date.now,
index: { expires: '5m' },
},
})
Мои данные не удаляются автоматически в пн goose, что-то не так с моей моделью? Вот моя структура модели. Может ли кто-нибудь помочь