##// END OF EJS Templates
Added a 'Assignable' boolean on Role model....
Added a 'Assignable' boolean on Role model. If unchecked, issues can not be assigned to users having this role. git-svn-id: http://redmine.rubyforge.org/svn/trunk@649 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r643:446889b3f0cb
Show More
059_add_roles_assignable.rb
9 lines | 199 B | text/x-ruby | RubyLexer
/ db / migrate / 059_add_roles_assignable.rb
class AddRolesAssignable < ActiveRecord::Migration
def self.up
add_column :roles, :assignable, :boolean, :default => true
end
def self.down
remove_column :roles, :assignable
end
end