Guest User

Untitled

a guest
Jun 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Contact < ActiveRecord::Base
  2.  
  3. has_one :acquisition
  4. has_one :acquisitor, :through => :acquisition, :source => :user
  5.  
  6. end
  7.  
  8. class User < ARB
  9.  
  10. has_many :acquisitions
  11. has_many :contacts :through => :acquisitions
  12.  
  13. end
Add Comment
Please, Sign In to add comment