##// END OF EJS Templates
Limit trackers for new issue to certain roles (#7839)....
Limit trackers for new issue to certain roles (#7839). git-svn-id: http://svn.redmine.org/redmine/trunk@15464 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8093:7c00a4a11fc3
r15082:79df68e17fc0
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