Sha256: 45a1ac5ddbb9190ce3e2e12eadfc0a2d75ebb57f5118434788837dc4daad6511
Contents?: true
Size: 297 Bytes
Versions: 112
Compression:
Stored size: 297 Bytes
Contents
# frozen_string_literal: true module Renalware log "Adding HD Cannulation Types" do file_path = File.join(File.dirname(__FILE__), "cannulation_types.csv") CSV.foreach(file_path, headers: true) do |row| HD::CannulationType.find_or_create_by!(name: row["name"]) end end end
Version data entries
112 entries across 112 versions & 1 rubygems