You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
509 B
17 lines
509 B
# frozen_string_literal: true |
|
|
|
class DowncaseCustomEmojiDomains < ActiveRecord::Migration[5.2] |
|
disable_ddl_transaction! |
|
|
|
def up |
|
duplicates = CustomEmoji.connection.select_all('SELECT string_agg(id::text, \',\') AS ids FROM custom_emojis GROUP BY shortcode, lower(domain) HAVING count(*) > 1').to_ary |
|
|
|
duplicates.each do |row| |
|
CustomEmoji.where(id: row['ids'].split(',')[0...-1]).destroy_all |
|
end |
|
|
|
CustomEmoji.in_batches.update_all('domain = lower(domain)') |
|
end |
|
|
|
def down; end |
|
end
|
|
|