Sha256: e1bd61fe7bfaf95fb43a4fc3278820dea78d5aa898444353c6e79ec7067a7f89
Contents?: true
Size: 234 Bytes
Versions: 6
Compression:
Stored size: 234 Bytes
Contents
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
6 entries across 6 versions & 1 rubygems