aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/college.rb
blob: 70c0cd153456c05f837a8a5b0baa8afc64da5616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
require_dependency "models/arunit2_model"
require "active_support/core_ext/object/with_options"

class College < ARUnit2Model
  has_many :courses

  with_options dependent: :destroy do |assoc|
    assoc.has_many :students, -> { where(active: true) }
  end
end