aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/node.rb
blob: 3422a9ea3a1f81cde043825cfc066fe886f5ca48 (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true
class Node < ActiveRecord::Base
  belongs_to :tree, touch: true
  belongs_to :parent,   class_name: "Node", touch: true, optional: true
  has_many   :children, class_name: "Node", foreign_key: :parent_id, dependent: :destroy
end