rails association code example
Example 1: activerecord through
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
Example 2: active record create association
@book = @author.books.create(published_at: Time.now)
class Doctor < ApplicationRecord
has_many :patients, through: :consultation
end
@book = @author.books.create(published_at: Time.now)