Skip to content

Instantly share code, notes, and snippets.

@dmaii
Last active August 29, 2015 14:07
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 dmaii/35ca0138d58fdf6db04d to your computer and use it in GitHub Desktop.
Save dmaii/35ca0138d58fdf6db04d to your computer and use it in GitHub Desktop.
db.sequelize.transaction(function(t) {
teamModel.destroy({ id: 1}, { transaction: t }).success().error(function(errors) {
console.log(errors);
t.commit();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment