未验证 提交 1289efcc 编写于 作者: C Camil Staps

Remove postgres-specific SQL from UsersStarProject

上级 c1126d2b
......@@ -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)) }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册