Sha256: 1515d1d01fd80c7112afbd0875ba54c658562a85eb175962c0d140f61c0772ec
Contents?: true
Size: 371 Bytes
Versions: 35
Compression:
Stored size: 371 Bytes
Contents
module Renalware log "Adding Renal Registry Ethnicities" do file_path = File.join(File.dirname(__FILE__), "rr18_ethnicity_codes.csv") CSV.foreach(file_path, headers: true) do |row| Patients::Ethnicity.find_or_create_by!(rr18_code: row["code"]) do |code| code.name = row["name"] code.cfh_name = row["cfh_name"] end end end end
Version data entries
35 entries across 35 versions & 1 rubygems