about summary refs log tree commit diff
path: root/db/migrate/20181207011115_downcase_custom_emoji_domains.rb
blob: e27e0249d9d2807ced2627243614a26f83e24092 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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