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.0.pre.rc7 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc6 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc5 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc4 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc3 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.rc1 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta12 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta11 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta10 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta9 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta8 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta7 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta6 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta5 db/seeds/default/patients/patients_ethnicities.rb
renalware-core-2.0.0.pre.beta4 db/seeds/default/patients/patients_ethnicities.rb