Sha256: 0762ebb826fe25ee9358b43b65cdef899b23b21d89fa35e141410b7de90d1298

Contents?: true

Size: 404 Bytes

Versions: 105

Compression:

Stored size: 404 Bytes

Contents

# frozen_string_literal: true

module Renalware
  log "Adding Languages" do
    return if Patients::Language.count > 0
    file_path = File.join(File.dirname(__FILE__), "patients_languages.csv")
    languages = []
    CSV.foreach(file_path, headers: true) do |row|
      languages << Patients::Language.new(code: row["code"], name: row["name"])
    end
    Patients::Language.import! languages
  end
end

Version data entries

105 entries across 105 versions & 1 rubygems

Version Path
renalware-core-2.0.74 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.73 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.72 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.71 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.70 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.69 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.68 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.67 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.64 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.63 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.62 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.61 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.60 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.58 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.57 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.56 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.55 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.54 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.53 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.52 db/seeds/default/patients/patients_languages.rb