]> cat aescling's git repositories - mastodon.git/commitdiff
Order by symbol value (#3077)
authoralpaca-tc <alpaca-tc@alpaca.tc>
Tue, 16 May 2017 01:35:17 +0000 (10:35 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 16 May 2017 01:35:17 +0000 (03:35 +0200)
app/models/media_attachment.rb
app/models/user.rb

index d18ebabd415e421b1f4e9863bd23b25c0759fade..3277eb227673b8d3a33245c710a4cbdb51413535 100644 (file)
@@ -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?
index dfecb2339f3f7b7b2e649ac0977d1e149b28ea1b..66a8edfc15588ef956933a16a3e28d291ce0e8f0 100644 (file)
@@ -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) }