I am creating a new database to manage wish lists.
Solution A:
Two tables,
- wish_list and
- wish_list_item
Solution B:
One table,
wish_list_with_item
This would have a wish list item per column, so it will be many columns on this table.
Which is better?