1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00
Maybe/db/migrate/20241001181256_add_locale_preference.rb
Zach Gollwitzer ab40289eb4
Allow users to set preferred locale in settings and provide basic date and time localization support (#1226)
* Add basic date and time localization

* Normalize translations

* Localize transaction dates

* Removed unsupported Rails locales
2024-10-02 14:02:17 -04:00

5 lines
138 B
Ruby

class AddLocalePreference < ActiveRecord::Migration[7.2]
def change
add_column :families, :locale, :string, default: "en"
end
end