Skip to content

Instantly share code, notes, and snippets.

@8parth
Last active November 13, 2016 04:32
Show Gist options
  • Save 8parth/b45ec24aaf1cffaa37ebfcf304f9147e to your computer and use it in GitHub Desktop.
Save 8parth/b45ec24aaf1cffaa37ebfcf304f9147e to your computer and use it in GitHub Desktop.
model structure
class User < ApplicationRecord
has_many :posts
has_many :comments
end
class Post < ApplicationRecord
has_many :comments
belongs_to :user
end
class Comment < ApplicationRecord
belongs_to :user
belongs_to :post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment