diff --git a/app/models/users_star_project.rb b/app/models/users_star_project.rb index e171a8220d0..04a48739d93 100644 --- a/app/models/users_star_project.rb +++ b/app/models/users_star_project.rb @@ -12,8 +12,8 @@ class UsersStarProject < ApplicationRecord alias_attribute :starred_since, :created_at - scope :order_user_name_asc, -> { joins(:user).reorder('"users"."name" ASC') } - scope :order_user_name_desc, -> { joins(:user).reorder('"users"."name" DESC') } + scope :order_user_name_asc, -> { joins(:user).reorder('users.name ASC') } + scope :order_user_name_desc, -> { joins(:user).reorder('users.name DESC') } scope :by_project, -> (project) { where(project_id: project.id) } scope :with_visible_profile, -> (user) { joins(:user).merge(User.with_visible_profile(user)) }