Files
fizzy/db/migrate/20250905093718_add_timezone_name_to_user_settings.rb
T
Jorge Manrubia cfa0149564 Persist timezones in the server
Add a beacon to persist timezones when these change (or the first time)
2025-09-05 12:11:57 +02:00

6 lines
145 B
Ruby

class AddTimezoneNameToUserSettings < ActiveRecord::Migration[8.1]
def change
add_column :user_settings, :timezone_name, :string
end
end