Skip to content

Instantly share code, notes, and snippets.

@starwels
Last active March 18, 2020 17:31
Show Gist options
  • Save starwels/36dd5cded320ab7e01776089f0b8b471 to your computer and use it in GitHub Desktop.
Save starwels/36dd5cded320ab7e01776089f0b8b471 to your computer and use it in GitHub Desktop.
class Post < ApplicationRecord
has_many :comments
end
class Comment < ApplicationRecord
belongs_to :post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment