diff options
Diffstat (limited to 'app/models/media_attachment.rb')
-rw-r--r-- | app/models/media_attachment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index d18ebabd4..3277eb227 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -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? |