When I query a document, I want to see the last updated date. Is this possible with couchDB? Or do I need to store that information when I update it?
I'm using cradle:
db.get('key-name-123', function (err, doc) {
console.log(doc); // I need the updated date
});