You can use it as a tree plugin or create it yourself:
belongs_to :parent, :foreign_key => "parent_id", :class_name => "Item" has_many :children, :foreign_key => 'parent_id', :class_name => 'Item', :order => 'created_at ASC', :dependent => :delete_all
source share