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

Version Path
renalware-core-2.0.16 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.15 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.14 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.13 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.12 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.11 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.9 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.8 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.7 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.5 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.4 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.3 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.2 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.1 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc13 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc11 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc10 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc9 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc8 db/seeds/default/patients/patients_ethnicities.rb