Guest User

Untitled

a guest
May 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # what happens here?
  2.  
  3. def method1( user_id )
  4. u = User.find user_id
  5.  
  6. # do something
  7.  
  8. ActiveRecord::Base.transaction do
  9. u.save
  10. end
  11.  
  12. method2( user_id )
  13. end
  14.  
  15. def method2( user_id )
  16. u = User.find user_id
  17. # do something
  18. u.save
  19. end
Add Comment
Please, Sign In to add comment