Skip to content

Instantly share code, notes, and snippets.

@jwhitehorn
Created April 30, 2018 17:23
Show Gist options
  • Save jwhitehorn/9ce6d01b514b87e17875d14e823fecc8 to your computer and use it in GitHub Desktop.
Save jwhitehorn/9ce6d01b514b87e17875d14e823fecc8 to your computer and use it in GitHub Desktop.
var DeletedRecord = db.define("deleted_records", {
table_name: String,
record_id: Number,
deleted_at: Date
}, {
hooks: {
beforeSave: function(next){
this.deleted_at = new Date();
next();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment