Hello, I want to use SS for building up a onlineshop for a t-shirt designer. The problem is that I have designs which should be printed either on the back or front of a t-shirt. Also the size of the design could vary and the colours of the shirt as well. So the customer should choose colour/size of the shirt/size of the design/place of the desing. My idea was to add a new dbcolumn for each product feature.
eg:
class MyProduct extends Product
{
static $db = array(
'Colour' => "Enum('red','green','blue')"
);
}
Is there an other more sophisticated way?
Thanks for your help!