Skip to content

Instantly share code, notes, and snippets.

@jwhitehorn
Created February 5, 2018 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwhitehorn/3af7d1a184b569c6e422db3946805e6e to your computer and use it in GitHub Desktop.
Save jwhitehorn/3af7d1a184b569c6e422db3946805e6e to your computer and use it in GitHub Desktop.
var CampgroundPhoto = db.define("campground_photos", {
photo_url: String,
campground_id: Number,
updated_at: Date
}, {
hooks: {
beforeSave: function(next){
this.updated_at = new Date();
next();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment