020_add_role_position.rb
10 lines
| 275 B
| text/x-ruby
|
RubyLexer
|
r205 | class AddRolePosition < ActiveRecord::Migration | ||
def self.up | ||||
|
r851 | add_column :roles, :position, :integer, :default => 1 | ||
|
r205 | Role.find(:all).each_with_index {|role, i| role.update_attribute(:position, i+1)} | ||
end | ||||
def self.down | ||||
remove_column :roles, :position | ||||
end | ||||
end | ||||