mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
20 lines
439 B
Ruby
20 lines
439 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddTimezoneToUserOptions < ActiveRecord::Migration[6.0]
|
||
|
def up
|
||
|
add_column :user_options, :timezone, :string
|
||
|
execute(
|
||
|
<<-SQL
|
||
|
UPDATE user_options
|
||
|
SET timezone = ucf.value
|
||
|
FROM user_custom_fields AS ucf
|
||
|
WHERE ucf.user_id = user_options.user_id AND ucf.name = 'timezone'
|
||
|
SQL
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :user_options, :timezone
|
||
|
end
|
||
|
end
|