En shipment_type är ett rubinobjekt, du vill skicka en sträng.
Om du behöver importera relationer, lägg till metoder på Port
modell som så
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
Sedan skickar du ett shipment_type_name
i CSV-filen och country_country_code
attribut.
Du skulle göra något liknande andra relationer.