私はアソシエーションが初めてです。ポリモーフィックアソシエーションを使用する場所とその目的を説明してください。
class Picture < ActiveRecord::Base に属するもの:imageable, :polymorphic => true end
class Employee < ActiveRecord::Base has_many :pictures, :as => :imageable end
class Product < ActiveRecord::Base has_many :pictures, :as => :imageable end
前もって感謝します。