mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
12 lines
291 B
Ruby
12 lines
291 B
Ruby
# 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
|