rails--rails/activerecord/test/models/family.rb

5 lines
133 B
Ruby
Raw Normal View History

class Family < ActiveRecord::Base
has_many :family_trees, -> { where(token: nil) }
has_many :members, through: :family_trees
end