mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
14 lines
623 B
Ruby
14 lines
623 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MigrateUncategorizedDescriptionSetting < ActiveRecord::Migration[4.2]
|
|
def change
|
|
execute "INSERT INTO translation_overrides (locale, translation_key, value, created_at, updated_at)
|
|
SELECT '#{I18n.locale}', 'category.uncategorized_description', value, created_at, updated_at
|
|
FROM site_settings
|
|
WHERE name = 'uncategorized_description'
|
|
AND value <> 'Topics that don''t need a category, or don''t fit into any other existing category.'"
|
|
|
|
execute "DELETE FROM site_settings WHERE name = 'uncategorized_description'"
|
|
end
|
|
end
|