Fixed: unable to migrate from an empty database.
(Message model is loaded at startup, which fails if it doesn't exist) git-svn-id: http://redmine.rubyforge.org/svn/trunk@771 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
05e27d0d83
commit
66c8c1e292
|
@ -22,7 +22,10 @@ class Message < ActiveRecord::Base
|
|||
has_many :attachments, :as => :container, :dependent => :destroy
|
||||
belongs_to :last_reply, :class_name => 'Message', :foreign_key => 'last_reply_id'
|
||||
|
||||
acts_as_searchable :columns => ['subject', 'content'], :include => :board, :project_key => "project_id"
|
||||
acts_as_searchable :columns => ['subject', 'content'],
|
||||
:include => :board,
|
||||
:project_key => 'project_id',
|
||||
:date_column => 'created_on'
|
||||
acts_as_event :title => Proc.new {|o| "#{o.board.name}: #{o.subject}"},
|
||||
:description => :content,
|
||||
:url => Proc.new {|o| {:controller => 'messages', :action => 'show', :board_id => o.board_id, :id => o.id}}
|
||||
|
|
Loading…
Reference in New Issue