समस्या यह है कि आपका एरो फंक्शन इस https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
बदलें
userSchema.pre("save", (next) => {
const currentDate = new Date
this.updated_at = currentDate.now
next()
})
करने के लिए
userSchema.pre("save", function (next) {
const currentDate = new Date()
this.updated_at = currentDate.now
next()
})