]> source.dussan.org Git - redmine.git/commitdiff
Clean up sort orders.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 31 Jan 2017 18:31:25 +0000 (18:31 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 31 Jan 2017 18:31:25 +0000 (18:31 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16321 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index f071010e2cb703f1305d2e8b7bf1a0a916c6aa59..942affe115c363f60536e62da523081f67ff821f 100644 (file)
@@ -43,15 +43,15 @@ class Project < ActiveRecord::Base
   has_many :queries, :dependent => :delete_all
   has_many :documents, :dependent => :destroy
   has_many :news, lambda {includes(:author)}, :dependent => :destroy
-  has_many :issue_categories, lambda {order("#{IssueCategory.table_name}.name")}, :dependent => :delete_all
-  has_many :boards, lambda {order("position ASC")}, :dependent => :destroy
-  has_one :repository, lambda {where(["is_default = ?", true])}
+  has_many :issue_categories, lambda {order(:name)}, :dependent => :delete_all
+  has_many :boards, lambda {order(:position)}, :dependent => :destroy
+  has_one :repository, lambda {where(:is_default => true)}
   has_many :repositories, :dependent => :destroy
   has_many :changesets, :through => :repository
   has_one :wiki, :dependent => :destroy
   # Custom field for the project issues
   has_and_belongs_to_many :issue_custom_fields,
-                          lambda {order("#{CustomField.table_name}.position")},
+                          lambda {order(:position)},
                           :class_name => 'IssueCustomField',
                           :join_table => "#{table_name_prefix}custom_fields_projects#{table_name_suffix}",
                           :association_foreign_key => 'custom_field_id'