Skip to content

Instantly share code, notes, and snippets.

@frcake
Last active December 17, 2018 12:59
Show Gist options
  • Save frcake/365e83ca843e905a9f5cbec1fceed42f to your computer and use it in GitHub Desktop.
Save frcake/365e83ca843e905a9f5cbec1fceed42f to your computer and use it in GitHub Desktop.
def persist
ActiveRecord::Base.transaction do
entity_collection.each(&:save!)
end
end
def persist
RawUserDatum.transaction do
entity_collection.each(&:save!)
end
rescue ActiveRecord::RecordInvalid => invalid_record
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment