summaryrefslogtreecommitdiff
path: root/db/migrate/20160616102642_remove_duplicated_keys.rb
blob: 5e41cc53e3243d9d9a9be058edc2835e617f86af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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