Shipping_type adalah objek ruby, Anda ingin mengirim string.
Jika Anda perlu mengimpor hubungan, tambahkan metode pada Port
modelnya seperti itu
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
Kemudian di CSV Anda akan mengirim shipment_type_name
dan country_country_code
atribut.
Anda akan melakukan sesuatu yang mirip dengan hubungan lain.