Answers for "messaging app ruby on rails self join"

1

rails self relation

class MyModel < ActiveRecord::Base
  belongs_to :parent, :class_name => 'MyModel'
  has_many :children, :class_name => 'MyModel', :foreign_key => 'parent_id'
end
Posted by: Guest on May-23-2020

Browse Popular Code Answers by Language