Sha256: 8b1fd12a27d3ec45c94d48d5e50f96620653da74cc633dc8eddd2c27001d7c71

Contents?: true

Size: 1.23 KB

Versions: 13

Compression:

Stored size: 1.23 KB

Contents

class ChangeTaxonsToNestedSet < ActiveRecord::Migration
  def self.up
    add_column :taxons, :lft, :integer
    add_column :taxons, :rgt, :integer

    Taxon.reset_column_information # So the new root ids get saved

    Taxon.class_eval do
      # adapted from awesome nested set to use "position" information
      indices = {}

      left_column_name = "lft"
      right_column_name = "rgt"
      quoted_parent_column_name = "parent_id"
      scope = lambda{|node|}

      set_left_and_rights = lambda do |node|
        # set left
        node[left_column_name] = indices[scope.call(node)] += 1
        # find
        find(:all, :conditions => ["#{quoted_parent_column_name} = ?", node], :order => "position ASC").each{|n| set_left_and_rights.call(n) }
        # set right
        node[right_column_name] = indices[scope.call(node)] += 1
        node.save!
      end

      # Find root node(s)
      find(:all, :conditions => "#{quoted_parent_column_name} IS NULL", :order => "position ASC").each do |root_node|
        # setup index for this scope
        indices[scope.call(root_node)] ||= 0
        set_left_and_rights.call(root_node)
      end
    end
  end

  def self.down
    remove_column :taxons, :lft
    remove_column :taxons, :rgt
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
spree-0.11.4 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.11.3 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree_core-0.30.2 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree_core-0.30.1 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree_core-0.30.0 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.11.2 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.11.1 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree_core-0.30.0.beta1 lib/generators/templates/db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.11.0 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.10.2 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.10.1 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.10.0 db/migrate/20091007134354_change_taxons_to_nested_set.rb
spree-0.10.0.beta db/migrate/20091007134354_change_taxons_to_nested_set.rb