Guest User

Untitled

a guest
Jul 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class User < AR::Base
  2. belongs_to :location
  3.  
  4. def city
  5. location.city
  6. end
  7.  
  8. def city=(city)
  9. location.city = city
  10. end
  11. end
Add Comment
Please, Sign In to add comment