can some explain to me how the database design would look like for the following approach:
let’s say there are two tables ‘toys’ and ‘wishlist’. Every wishlist has one toy, but ‘toys’ doesn’t contain all the toys there are in the world. To prevent unhappy children lets add a row to toys called ‘miscellaneous’ so they can specify the toy they like in a text input, and that’s where the problem begins. I don’t know where to store this data.
can some explain to me how the database design would look like for the
Share
I think you answered it yourself:
So when customers ask for an unknown toy, you simply write them into the toy list.