Fix warning about using SQL in order for Account#partitioned (#7159)
This commit is contained in:
		
							parent
							
								
									e6138441b7
								
							
						
					
					
						commit
						4f460eba18
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -114,7 +114,7 @@ class Account < ApplicationRecord | ||||||
|   scope :without_followers, -> { where(followers_count: 0) } |   scope :without_followers, -> { where(followers_count: 0) } | ||||||
|   scope :with_followers, -> { where('followers_count > 0') } |   scope :with_followers, -> { where('followers_count > 0') } | ||||||
|   scope :expiring, ->(time) { remote.where.not(subscription_expires_at: nil).where('subscription_expires_at < ?', time) } |   scope :expiring, ->(time) { remote.where.not(subscription_expires_at: nil).where('subscription_expires_at < ?', time) } | ||||||
|   scope :partitioned, -> { order('row_number() over (partition by domain)') } |   scope :partitioned, -> { order(Arel.sql('row_number() over (partition by domain)')) } | ||||||
|   scope :silenced, -> { where(silenced: true) } |   scope :silenced, -> { where(silenced: true) } | ||||||
|   scope :suspended, -> { where(suspended: true) } |   scope :suspended, -> { where(suspended: true) } | ||||||
|   scope :recent, -> { reorder(id: :desc) } |   scope :recent, -> { reorder(id: :desc) } | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue