Sha256: de676a0b5af05556d0371ce2ed712615c4b54de5bca37811c2abd843f094ded0
Contents?: true
Size: 299 Bytes
Versions: 9
Compression:
Stored size: 299 Bytes
Contents
# This migration comes from spree (originally 20141105213646) class UpdateClassificationsPositions < ActiveRecord::Migration[4.2] def up Spree::Taxon.all.each do |taxon| taxon.classifications.each_with_index do |c12n, i| c12n.set_list_position(i + 1) end end end end
Version data entries
9 entries across 9 versions & 2 rubygems