mirror of
https://github.com/we-promise/sure.git
synced 2026-04-23 22:14:08 +00:00
* Add tax treatment support for accounts, investments, and cryptos * Replace hardcoded region labels with I18n translations * Add I18n support for subtype labels with fallback to hardcoded values * fixed schema --------- Co-authored-by: luckyPipewrench <luckypipewrench@proton.me>
6 lines
167 B
Ruby
6 lines
167 B
Ruby
class AddTaxTreatmentToCryptos < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :cryptos, :tax_treatment, :string, default: "taxable", null: false
|
|
end
|
|
end
|