Um tipo de envio é um objeto rubi, você deseja enviar uma string.
Se você precisar importar relacionamentos, adicione métodos na
Port
modelo assim class Port < ApplicationRecord
def shipment_type_name
shipment_type.try(:name)
end
def shipment_type_name=(name)
self.shipment_type = ShipmentType.where(:name => name).first_or_create
end
def country_country_code
country.try(:country_code)
end
def country_country_code=(code)
self.country = Country.where(:country_code => code).first
end
end
Em seguida, no CSV, você enviaria um
shipment_type_name
e country_country_code
atributos. Você faria algo semelhante a outros relacionamentos.