7c00a4a11f
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8213 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
268 B
Ruby
11 lines
268 B
Ruby
class AddRolePosition < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :roles, :position, :integer, :default => 1
|
|
Role.all.each_with_index {|role, i| role.update_attribute(:position, i+1)}
|
|
end
|
|
|
|
def self.down
|
|
remove_column :roles, :position
|
|
end
|
|
end
|