0
變化更新多態關聯Rails中我有三個類圖片,員工和產品定義這樣在型號名稱
Class Picture < ActiveRecord::Base
belongs_to :imageable, :polymorphic => true
end
class Employee < ActiveRecord::Base
has_many :pictures, :as => :imageable
end
class Product < ActiveRecord::Base
has_many :pictures, :as => :imageable
end
我要圖片的型號名稱更改爲圖像。我需要更新多態關聯?
謝謝。我會試一試。 – ni8mare