diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-10-22 18:41:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-10-22 18:41:03 +0000 |
commit | 498a34403ad3f15dee2067e9d8998675255010ce (patch) | |
tree | 4157bab01de3ac07d5d076cc3eeb988df1d2a993 /app/models/document.rb | |
parent | 0fc1906201be897fb1d7b1424cd3955f0e224eb4 (diff) | |
download | redmine-498a34403ad3f15dee2067e9d8998675255010ce.tar.gz redmine-498a34403ad3f15dee2067e9d8998675255010ce.zip |
Removed unneeded :foreign_key option on belongs_to associations.
git-svn-id: http://svn.redmine.org/redmine/trunk@13484 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/document.rb')
-rw-r--r-- | app/models/document.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/document.rb b/app/models/document.rb index c195f64ca..00530131a 100644 --- a/app/models/document.rb +++ b/app/models/document.rb @@ -18,7 +18,7 @@ class Document < ActiveRecord::Base include Redmine::SafeAttributes belongs_to :project - belongs_to :category, :class_name => "DocumentCategory", :foreign_key => "category_id" + belongs_to :category, :class_name => "DocumentCategory" acts_as_attachable :delete_permission => :delete_documents acts_as_searchable :columns => ['title', "#{table_name}.description"], |