diff options
author | Adam Copp <adam.copp@gmail.com> | 2018-12-11 04:30:57 +0000 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-11 05:30:57 +0100 |
commit | 7d00e4edbd0bef8791d8efee7665eb13bb256d7a (patch) | |
tree | 1946b862acc6b02b3fbaf670690f196f81f74ea5 /db | |
parent | dbb1ee269fa4a6ee097dfea5f77bb2c9428af93b (diff) |
Make custom emoji domains case insensitive #9351 (#9474)
* 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.
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20181207011115_downcase_custom_emoji_domains.rb | 7 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/db/migrate/20181207011115_downcase_custom_emoji_domains.rb b/db/migrate/20181207011115_downcase_custom_emoji_domains.rb new file mode 100644 index 000000000..c9db3800d --- /dev/null +++ b/db/migrate/20181207011115_downcase_custom_emoji_domains.rb @@ -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 diff --git a/db/schema.rb b/db/schema.rb index 6d643c27c..51ac43e1d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2018_12_04_215309) do +ActiveRecord::Schema.define(version: 2018_12_07_011115) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |