Guest User

Untitled

a guest
Nov 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. schema.pre('update', function() {
  2. this.update({},{ $set: { updatedAt: new Date() } });
  3. });
  4.  
  5. schema.pre('update', function() {
  6. this.update({},{ $push: { history: document.subDoc } });
  7. });
Add Comment
Please, Sign In to add comment