rails sql in has many relationship code example
Example: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end