Browse Source

Fix regression in custom emoji migration (#9742)

Fix #9741
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
0a4caa89c3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      db/migrate/20181207011115_downcase_custom_emoji_domains.rb

+ 1
- 1
db/migrate/20181207011115_downcase_custom_emoji_domains.rb View File

@ -2,7 +2,7 @@ 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 lower(domain) HAVING count(*) > 1').to_hash
duplicates = CustomEmoji.connection.select_all('SELECT string_agg(id::text, \',\') AS ids FROM custom_emojis GROUP BY shortcode, lower(domain) HAVING count(*) > 1').to_hash
duplicates.each do |row|
CustomEmoji.where(id: row['ids'].split(',')[0...-1]).destroy_all

Loading…
Cancel
Save