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: 00a45d7fe7313b9b41caf4373bf2526e8e38739a (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 keys
        WHERE fingerprint = #{fingerprint}
        AND id != (
          SELECT id FROM (
            SELECT max(id) AS id
            FROM keys
            WHERE fingerprint = #{fingerprint}
          ) max_ids
        )
      })
    end
  end
end