From 66c8c1e29249505d2cf949293454e676b9726154 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Thu, 27 Sep 2007 22:24:09 +0000 Subject: [PATCH] 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 --- app/models/message.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/models/message.rb b/app/models/message.rb index b48fb255..909c06a9 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -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}} -- 2.11.0