Order by symbol value (#3077)
This commit is contained in:
parent
a2a2af244c
commit
09ec6e504b
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ class User < ApplicationRecord
|
|||
validates :locale, inclusion: I18n.available_locales.map(&:to_s), unless: 'locale.nil?'
|
||||
validates :email, email: true
|
||||
|
||||
scope :recent, -> { order('id desc') }
|
||||
scope :recent, -> { order(id: :desc) }
|
||||
scope :admins, -> { where(admin: true) }
|
||||
scope :confirmed, -> { where.not(confirmed_at: nil) }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue