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

r526:b90e84b9fe25
r981:58610ec52af2
Show More
046_create_messages.rb
21 lines | 733 B | text/x-ruby | RubyLexer
/ db / migrate / 046_create_messages.rb
class CreateMessages < ActiveRecord::Migration
def self.up
create_table :messages do |t|
t.column :board_id, :integer, :null => false
t.column :parent_id, :integer
t.column :subject, :string, :default => "", :null => false
t.column :content, :text
t.column :author_id, :integer
t.column :replies_count, :integer, :default => 0, :null => false
t.column :last_reply_id, :integer
t.column :created_on, :datetime, :null => false
t.column :updated_on, :datetime, :null => false
end
add_index :messages, [:board_id], :name => :messages_board_id
add_index :messages, [:parent_id], :name => :messages_parent_id
end
def self.down
drop_table :messages
end
end