aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/family.rb
blob: 24bc3cc4574448e8b733127e53abef320257bd3d (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Family < ActiveRecord::Base
  has_many :family_trees, -> { where(token: nil) }
  has_many :members, through: :family_trees
end