Should I clone the entire product along with all related data into another table for posterity, effectively logging the current state of the product, as it was when the user purchased it?
Pros:
- The product (as the user saw it when it was purchased) is held for posterity and never changed. If the product data changes over time, it won't change the original order information.
Cons:
- A lot of added complexity:
- Several more tables required in the database.
- Similar schema to keep track of.
- More disk space used.
Does anyone have a clever solution to this conundrum?