Browse Source
* Make custom emoji domains case sensitive #9351 * Fixup style in downcase_domain to comply with codeclimate. * switch if! to unless * Don't use transactions, operate in batches. Also revert spurious schema change.pull/5/head
5 changed files with 24 additions and 2 deletions
@ -0,0 +1,7 @@
|
||||
class DowncaseCustomEmojiDomains < ActiveRecord::Migration[5.2] |
||||
disable_ddl_transaction! |
||||
|
||||
def change |
||||
CustomEmoji.in_batches.update_all('domain = lower(domain)') |
||||
end |
||||
end |
||||
Loading…
Reference in new issue