OSDN Git Service

Fixed: unable to migrate from an empty database.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 27 Sep 2007 22:24:09 +0000 (22:24 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 27 Sep 2007 22:24:09 +0000 (22:24 +0000)
(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

app/models/message.rb

index b48fb25..909c06a 100644 (file)
@@ -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}}