4

I using rails3 and trying to build some complex associations.

I have Product, Version and Property models.

class Version < ActiveRecord::Base
  belongs_to :product
  has_many :specs
  has_many :properties, :through => :specs
end

class Product < ActiveRecord::Base
  has_many :versions
  has_many :specs
  has_many :properties, :through => :specs
end

class Property < ActiveRecord::Base
end

class Spec < ActiveRecord::Base
  belongs_to :product
  belongs_to :spec
  belongs_to :version
end

It works perfect, but i want to use product and version as polymorphic relations, so table specs will have only spec_id and some_other_id, instead of spec_id, product_id, version_id.

I can't figure out where i should put :as and where :polymorphic => true. Can you help me?

bUg.
  • 912
  • 9
  • 11

1 Answers1

4

How about:

class Version < ActiveRecord::Base
  belongs_to :product
  has_many :specs, :as => :speccable
  has_many :properties, :through => :specs
end

class Product < ActiveRecord::Base
  has_many :versions
  has_many :specs, :as => :speccable
  has_many :properties, :through => :specs
end

class Property < ActiveRecord::Base
end

class Spec < ActiveRecord::Base
  belongs_to :speccable, :polymorphic => true
  belongs_to :spec
end
#table: specs(id,spec_id,speccable_type,speccable_id)
Zabba
  • 64,285
  • 47
  • 179
  • 207
  • Thanks. It works, just had to change addressable to speccable. and there is no "belongs_to :spec", but "belongs_to :property" (its my fault) – bUg. Nov 07 '10 at 00:24