##// END OF EJS Templates
Search engine: issue custom fields can now be searched....
Search engine: issue custom fields can now be searched. Each issue custom field (excepting numeric, date and boolean fields) can be marked as "Searchable" (default to false). git-svn-id: http://redmine.rubyforge.org/svn/trunk@994 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r851:8f7f305f7cf8
r981:58610ec52af2
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