Sha256: 6646db1f556ab326d3df89e38b8e26f4bfccb31040992ed5cdae5c5e333fc2ff
Contents?: true
Size: 260 Bytes
Versions: 7
Compression:
Stored size: 260 Bytes
Contents
# 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
Version data entries
7 entries across 7 versions & 2 rubygems