cfa0149564
Add a beacon to persist timezones when these change (or the first time)
6 lines
145 B
Ruby
6 lines
145 B
Ruby
class AddTimezoneNameToUserSettings < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :user_settings, :timezone_name, :string
|
|
end
|
|
end
|