Last active
December 23, 2015 00:08
-
-
Save jparbros/6551155 to your computer and use it in GitHub Desktop.
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
| # == Schema Info | |
| # | |
| # Table name: comments | |
| # | |
| # id :integer | |
| # author :string | |
| # email :string | |
| # comment :text | |
| # post_id :integer | |
| # created_at :datetime | |
| # updated_at :datetime | |
| # | |
| class Comment < ActiveRecord::Base | |
| belongs_to :post | |
| 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
| # == Schema Info | |
| # | |
| # Table name: posts | |
| # | |
| # id :integer | |
| # title :string | |
| # content :text | |
| # created_at :datetime | |
| # updated_at :datetime | |
| # | |
| class Post < ActiveRecord::Base | |
| has_many :comments | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment