Merge 2.7.1 #7
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -44,7 +44,7 @@ class CopyAccountStats < ActiveRecord::Migration[5.2]
 | 
				
			||||||
    # uniqueness violations that we need to skip over
 | 
					    # uniqueness violations that we need to skip over
 | 
				
			||||||
    Account.unscoped.select('id, statuses_count, following_count, followers_count, created_at, updated_at').find_each do |account|
 | 
					    Account.unscoped.select('id, statuses_count, following_count, followers_count, created_at, updated_at').find_each do |account|
 | 
				
			||||||
      begin
 | 
					      begin
 | 
				
			||||||
        params = [[nil, account.id], [nil, account.statuses_count], [nil, account.following_count], [nil, account.followers_count], [nil, account.created_at], [nil, account.updated_at]]
 | 
					        params = [[nil, account.id], [nil, account[:statuses_count]], [nil, account[:following_count]], [nil, account[:followers_count]], [nil, account.created_at], [nil, account.updated_at]]
 | 
				
			||||||
        exec_insert('INSERT INTO account_stats (account_id, statuses_count, following_count, followers_count, created_at, updated_at) VALUES ($1, $2, $3, $4, $5, $6)', nil, params)
 | 
					        exec_insert('INSERT INTO account_stats (account_id, statuses_count, following_count, followers_count, created_at, updated_at) VALUES ($1, $2, $3, $4, $5, $6)', nil, params)
 | 
				
			||||||
      rescue ActiveRecord::RecordNotUnique
 | 
					      rescue ActiveRecord::RecordNotUnique
 | 
				
			||||||
        next
 | 
					        next
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue