associate existing records rails has many through code example
Example: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end