Created
November 24, 2015 00:05
-
-
Save AlexVKO/20c7d76d0e20fc316a9a to your computer and use it in GitHub Desktop.
Post with commentable comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Comment < ActiveRecord::Base | |
| belongs_to :commentable, polymorphic: true | |
| has_many :comments, as: :commentable | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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