0
0
Fork 0

Order by symbol value (#3077)

This commit is contained in:
alpaca-tc 2017-05-16 10:35:17 +09:00 committed by Eugen Rochko
parent a2a2af244c
commit 09ec6e504b
2 changed files with 2 additions and 2 deletions

View 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?