class Maintenance::CountryUpdateJob
  def perform
    IsoCountry.find_by(alpha2: 'TW')&.update!(name: 'Taiwan')
    Family.where(country_id: 218).update_all(Country1: 'Taiwan')
    Contact.where(country_id: 218).update_all(Country: 'Taiwan')
  end
end
