association in rails belongs_to code example
Example: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end