about summary refs log tree commit diff
path: root/db/migrate/20181207011115_downcase_custom_emoji_domains.rb
blob: c9db3800daa36c506bc7fd094d275d7d0495c246 (plain) (blame)
1
2
3
4
5
6
7
class DowncaseCustomEmojiDomains < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def change
    CustomEmoji.in_batches.update_all('domain = lower(domain)')
  end
end