aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/member_detail.rb
blob: 157130986c865c38ede111fecfbaf0ceed4edcb1 (plain) (blame)
1
2
3
4
5
6
7
8
class MemberDetail < ActiveRecord::Base
  belongs_to :member, inverse_of: false
  belongs_to :organization
  has_one :member_type, through: :member
  has_one :membership, through: :member

  has_many :organization_member_details, through: :organization, source: :member_details
end