##// 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:

r451:18255881ca61
r981:58610ec52af2
Show More
039_create_watchers.rb
13 lines | 337 B | text/x-ruby | RubyLexer
/ db / migrate / 039_create_watchers.rb
class CreateWatchers < ActiveRecord::Migration
def self.up
create_table :watchers do |t|
t.column :watchable_type, :string, :default => "", :null => false
t.column :watchable_id, :integer, :default => 0, :null => false
t.column :user_id, :integer
end
end
def self.down
drop_table :watchers
end
end