Guest User

Untitled

a guest
Jun 24th, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Examples:
  2.  
  3. User = User.create( 'email' => 'john@example.com' )
  4. => #<User:0x98b70 @attributes={"email"=>"john@example.com", "_rev"=>"1242273425590", "_class"=>"User", "updated_at"=>"1242273425", "created_at"=>"1242273425"}, @id=1>
  5.  
  6. user.id
  7. => 1
  8.  
  9. user.email = 'jane@example.com'
  10. => "jane@example.com"
  11.  
  12. user.save
  13. => true
  14.  
  15. user.reload
  16. => true
  17.  
  18. user.email
  19. => jane@example.com
Add Comment
Please, Sign In to add comment