Files
sure/db/migrate/20260110120000_add_investment_cashflow_support.rb
Josh Waldrep 582eda999b Remove exclude_from_cashflow flag and consolidate logic into excluded toggle
- Removed `exclude_from_cashflow` attribute across models, controllers, and views.
- Updated queries to rely solely on the `excluded` flag for filtering transactions and entries.
- Simplified migration by consolidating `exclude_from_cashflow` functionality into the existing `excluded` toggle.
- Refactored related tests to remove outdated logic and ensured compatibility with the updated implementation.
2026-01-12 15:35:38 -05:00

6 lines
175 B
Ruby

class AddInvestmentCashflowSupport < ActiveRecord::Migration[7.2]
# No-op: exclude_from_cashflow was consolidated into the existing 'excluded' toggle
def change
end
end