Advertisement
Guest User

Untitled

a guest
Sep 16th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.16 KB | None | 0 0
  1. class Post < ApplicationRecord
  2.   has_many :replies, class_name: "Post",
  3.                      foreign_key: :thread_id
  4.  
  5.   belongs_to :thread, class_name: "Post"
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement