active record return value from has_many associations 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