Files
sure/db/migrate/20260117200000_add_tax_treatment_to_cryptos.rb
LPW 64dc5c2fb8 Add tax treatment classification for investment accounts with international support (#693)
* 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>
2026-01-18 17:29:02 +01:00

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