Custom fields for issues can now be used as filters on issue list.

To use a custom field as a filter, check "Used as a filter" on the custom field edit screen.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@447 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2007-04-17 10:53:20 +00:00
parent 559b2069ac
commit d570bc5cc5
12 changed files with 75 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
class AddCustomFieldIsFilter < ActiveRecord::Migration
def self.up
add_column :custom_fields, :is_filter, :boolean, :null => false, :default => false
end
def self.down
remove_column :custom_fields, :is_filter
end
end