OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/072_add_enumerations_positi...

12 lines
379 B

class AddEnumerationsPosition < ActiveRecord::Migration
def self.up
add_column :enumerations, :position, :integer, :default => 1, :null => false
Enumeration.find(:all).group_by(&:opt).each_value do |enums|
enums.each_with_index {|enum, i| enum.update_attribute(:position, i+1)}
end
end
def self.down
remove_column :enumerations, :position
end
end