2007-11-12 20:23:14 +03:00
|
|
|
class AddCustomFieldsPosition < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
add_column(:custom_fields, :position, :integer, :default => 1)
|
2012-12-03 00:28:37 +04:00
|
|
|
CustomField.all.group_by(&:type).each do |t, fields|
|
2007-11-12 20:23:14 +03:00
|
|
|
fields.each_with_index do |field, i|
|
|
|
|
# do not call model callbacks
|
|
|
|
CustomField.update_all "position = #{i+1}", {:id => field.id}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :custom_fields, :position
|
|
|
|
end
|
|
|
|
end
|