2016-06-16 06:53:32 -04:00
|
|
|
# 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{
|
2016-06-29 16:09:27 -04:00
|
|
|
DELETE FROM #{quote_table_name(:keys)}
|
2016-06-16 06:53:32 -04:00
|
|
|
WHERE fingerprint = #{fingerprint}
|
|
|
|
AND id != (
|
|
|
|
SELECT id FROM (
|
|
|
|
SELECT max(id) AS id
|
2016-06-29 14:22:18 -04:00
|
|
|
FROM #{quote_table_name(:keys)}
|
2016-06-16 06:53:32 -04:00
|
|
|
WHERE fingerprint = #{fingerprint}
|
|
|
|
) max_ids
|
|
|
|
)
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|