Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160616102642_remove_duplicated_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 180a75e0998279c0db526466a125c31995842f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# rubocop:disable all
class RemoveDuplicatedKeys < ActiveRecord::Migration
  def up
    select_all("SELECT fingerprint FROM #{quote_table_name(:keys)} GROUP BY fingerprint HAVING COUNT(*) > 1").each do |row|
      fingerprint = connection.quote(row['fingerprint'])
      execute(%Q{
        DELETE FROM #{quote_table_name(:keys)}
        WHERE fingerprint = #{fingerprint}
        AND id != (
          SELECT id FROM (
            SELECT max(id) AS id
            FROM #{quote_table_name(:keys)}
            WHERE fingerprint = #{fingerprint}
          ) max_ids
        )
      })
    end
  end
end