class UpdatePaymentStatusToPending < ActiveRecord::Migration[8.0] def change Donation.where(payment_status: nil).update_all(payment_status: "pending") Donation.where.not(payment_status: %w[pending processing settled]).update_all(payment_status: "pending") end end