rails has_many through active_record/dynamic_matchersmethod_missing code example
Example 1: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
Example 2: active record dependent destroy
has_many :books, dependent: :destroy