mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
- 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.
6 lines
175 B
Ruby
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
|