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

Version Path
ibm_db-5.2.0-x86-mingw32 test/models/node.rb
ibm_db-5.1.0-x86-mingw32 test/models/node.rb
ibm_db-5.0.5-x86-mingw32 test/models/node.rb
ibm_db-5.0.4-x86-mingw32 test/models/node.rb
ibm_db-5.0.3-x86-mingw32 test/models/node.rb
ibm_db-5.0.2-x86-mingw32 test/models/node.rb