Guest User

Untitled

a guest
Nov 12th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class Post < ApplicationRecord
  2. has_many :comments
  3. end
  4.  
  5. class Comment < ApplicationRecord
  6. belongs_to :post
  7. end
Add Comment
Please, Sign In to add comment