1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-14 13:08:14 +00:00
redmine/rails-2.1/db/migrate/078_add_custom_fields_position.rb
Jean-Philippe Lang 5f108dfb0f Few fixes.
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1470 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-05-27 18:35:04 +00:00

16 lines
448 B
Ruby

class AddCustomFieldsPosition < ActiveRecord::Migration
def self.up
add_column(:custom_fields, :position, :integer, :default => 1)
CustomField.find(:all).group_by(&:type).each do |t, fields|
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