Displaying 1 result from an estimated 1 matches for "productadata".
Did you mean:
product_data
2006 Jan 03
3
What''s the best way to do complex inheritance?
I have a Merchant class that has many Products. Product is an abstract
class which has many subclasses (ProductA, ProductB, etc). All Products
have common data, like ''name'', ''status'', ''created_on'', etc... but they
also have some completely different properties.
It seems like Active Record only supports Single Table Inheritance.
This