Sha256: cf265e198f17a6c773e8924efecd277c22a658219974568a733708b91d1ddcca
Contents?: true
Size: 294 Bytes
Versions: 11
Compression:
Stored size: 294 Bytes
Contents
# This migration comes from spree (originally 20141105213646) class UpdateClassificationsPositions < ActiveRecord::Migration 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
11 entries across 11 versions & 5 rubygems