mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +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
35 lines
1.0 KiB
Ruby
35 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class DropKeyColumnFromThemes < ActiveRecord::Migration[5.2]
|
|
def up
|
|
add_column :user_options, :theme_ids, :integer, array: true, null: false, default: []
|
|
|
|
execute(
|
|
"UPDATE user_options AS uo
|
|
SET theme_ids = (
|
|
SELECT array_agg(themes.id)
|
|
FROM themes
|
|
INNER JOIN user_options
|
|
ON themes.key = user_options.theme_key
|
|
WHERE user_options.user_id = uo.user_id
|
|
) WHERE uo.theme_key IN (SELECT key FROM themes)"
|
|
)
|
|
|
|
execute(
|
|
"INSERT INTO site_settings (name, data_type, value, created_at, updated_at)
|
|
SELECT 'default_theme_id', 3, id, now(), now()
|
|
FROM themes
|
|
WHERE key = (SELECT value FROM site_settings WHERE name = 'default_theme_key')"
|
|
)
|
|
|
|
execute("DELETE FROM site_settings WHERE name = 'default_theme_key'")
|
|
|
|
# delayed drop for theme_key on user_options table
|
|
# delayed drop for key on themes table
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|