Guest User

Untitled

a guest
Apr 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Foo
  2. has_one :bar
  3. has_one :baz, :through => :bar
  4. end
  5.  
  6. class Bar
  7. has_one :baz
  8. belongs_to :foo
  9. end
  10.  
  11. class Baz
  12. belongs_to :bar
  13. has_one :foo, :through => :bar
  14. end
Add Comment
Please, Sign In to add comment