Sorry for the bad title, I have no idea how to call it otherwise.
My "Product" table has a HABTM-link set up with "ProductProperty".
Now, unfortunately, the client has decided every property could be added multiple times with different data.
So, I'm trying to save this:
array(
array('product_id' => 8218, 'property_id' => 30, 'numeric_value' => 47, 'modifier' => 1),
array('product_id' => 8218, 'property_id' => 30, 'numeric_value' => 21, 'modifier' => 1)
);
But of course, the last 2 values just overwrite the first 2. Any idea on how I can trick Cake into storing them separately?