Browse Source

CLDC-4313: Update rake name

2025 or later
CLDC-4313-resolve-unhandled-errors-on-large-numbers-in-numeric-fields
samyou-softwire 4 days ago
parent
commit
b9a5224292
  1. 2
      lib/tasks/correct_value_and_mortgage_for_2025_or_later_sales_logs.rake

2
lib/tasks/correct_value_and_mortgage_for_2025_sales_logs.rake → lib/tasks/correct_value_and_mortgage_for_2025_or_later_sales_logs.rake

@ -1,5 +1,5 @@
desc "Clears mortgage and purchase price (the 'value' field) values for sales logs in the database if they are over 999,999" desc "Clears mortgage and purchase price (the 'value' field) values for sales logs in the database if they are over 999,999"
task correct_value_and_mortgage_for_2025_sales_logs: :environment do task correct_value_and_mortgage_for_2025_or_later_sales_logs: :environment do
mortgage_incorrect_logs = SalesLog.filter_by_year_or_later(2025).where("mortgage > 999999") mortgage_incorrect_logs = SalesLog.filter_by_year_or_later(2025).where("mortgage > 999999")
value_incorrect_logs = SalesLog.filter_by_year_or_later(2025).where("value > 999999") value_incorrect_logs = SalesLog.filter_by_year_or_later(2025).where("value > 999999")
all_incorrect_logs = (mortgage_incorrect_logs + value_incorrect_logs).uniq all_incorrect_logs = (mortgage_incorrect_logs + value_incorrect_logs).uniq
Loading…
Cancel
Save