Skip to content

Instantly share code, notes, and snippets.

@AlexVKO
Created November 24, 2015 00:05
Show Gist options
  • Select an option

  • Save AlexVKO/20c7d76d0e20fc316a9a to your computer and use it in GitHub Desktop.

Select an option

Save AlexVKO/20c7d76d0e20fc316a9a to your computer and use it in GitHub Desktop.
Post with commentable comments
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
has_many :comments, as: :commentable
end
class Post < ActiveRecord::Base
has_many :comments, as: :commentable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment