blob: 3afa8819384a2e8c146c35e29785c2a9ffde6f1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
class AddRolePosition < ActiveRecord::Migration
def self.up
add_column :roles, :position, :integer, :default => 1, :null => false
Role.find(:all).each_with_index {|role, i| role.update_attribute(:position, i+1)}
end
def self.down
remove_column :roles, :position
end
end
|