Есть несколько способов сделать это:
Внутри схемы:
const YourSchema = new Schema({
timestamps: { type: Boolean, required: true, default: true }
});
Использование промежуточного программного обеспечения:
YourSchema.pre('save', function (next) {
this.timestamps = true
next();
});