mirror of
https://github.com/redmine/redmine.git
synced 2026-05-07 13:27:40 +02:00
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:
9
db/migrate/038_add_custom_field_is_filter.rb
Normal file
9
db/migrate/038_add_custom_field_is_filter.rb
Normal 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
|
||||
Reference in New Issue
Block a user