DEV Community

Discussion on: Everything There Is to Know About Associations in Rails

Collapse
 
samuelna profile image
Samuel • Edited

Small typos for polymorphic association example code.

...

class Employee < ApplicationRecord
  # should be comments
  has_many :comment, as: :commentable
end

class Product < ApplicationRecord
  # should be comments
  has_many :comment, as: :commentable
end
Enter fullscreen mode Exit fullscreen mode