##// END OF EJS Templates
tagged version 0.9.3...
tagged version 0.9.3 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/0.9.3@3515 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r851:8f7f305f7cf8
r3401:fc6ccc1ea259 0.9.3
Show More
020_add_role_position.rb
10 lines | 275 B | text/x-ruby | RubyLexer
/ db / migrate / 020_add_role_position.rb
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 class AddRolePosition < ActiveRecord::Migration
def self.up
Jean-Philippe Lang
Removed 'not null' constraint on position fields....
r851 add_column :roles, :position, :integer, :default => 1
Jean-Philippe Lang
added the ability to set the sort order for roles...
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