Sha256: ddfd4ef09571ca2f9eead2be52bf487930fca8efd1e5920a71f028f6e28d1e6b

Contents?: true

Size: 229 Bytes

Versions: 8

Compression:

Stored size: 229 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

8 entries across 8 versions & 1 rubygems

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