I'm currently looking into the best way of saving some data in my database for each user. Lets say each user can save recipes on their account, then what would be the best way of doing this?
I thought of storing a JSON string in a column, but I read that that might not be the best idea, because it's slow to query it?
Another idea was to make a completely new table, where all the recipes that are being saved are stored.
What would you recommend? Thanks.