Sha256: 5d818e440e7c7aa6351b43375fd1a94da2035c06606fede74a15e4350395763e

Contents?: true

Size: 405 Bytes

Versions: 30

Compression:

Stored size: 405 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

30 entries across 30 versions & 1 rubygems

Version Path
renalware-core-2.1.1 db/seeds/default/patients/patients_languages.rb
renalware-core-2.1.0 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.167 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.166 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.165 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.164 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.163 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.162 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.161 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.160 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.159 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.158 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.157 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.156 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.155 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.153 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.152 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.151 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.149 db/seeds/default/patients/patients_languages.rb
renalware-core-2.0.148 db/seeds/default/patients/patients_languages.rb