where with foreign key active record code example
Example: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end