##// END OF EJS Templates
Routing tests for r9977....
Routing tests for r9977. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9978 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8093:7c00a4a11fc3
r9795:004a13b75ca1
Show More
020_add_role_position.rb
10 lines | 268 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
Restores migration broken by r8182 and removes default scope on Role (#9800)....
r8093 Role.all.each_with_index {|role, i| role.update_attribute(:position, i+1)}
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 end
def self.down
remove_column :roles, :position
end
end