Skip to content
Snippets Groups Projects
Commit 09ec6e50 authored by alpaca-tc's avatar alpaca-tc Committed by Eugen Rochko
Browse files

Order by symbol value (#3077)

parent a2a2af24
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ class MediaAttachment < ApplicationRecord
scope :attached, -> { where.not(status_id: nil) }
scope :local, -> { where(remote_url: '') }
default_scope { order('id asc') }
default_scope { order(id: :asc) }
def local?
remote_url.blank?
......
......@@ -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) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment