SyntaxFix
Write A Post
Hire A Developer
Questions
You can store favourites with no associated menu in a separate table:
CREATE TABLE FavoriteWithoutMenu ( FavoriteWithoutMenuId uuid NOT NULL, --Primary key UserId uuid NOT NULL, RecipeId uuid NOT NULL, UNIQUE KEY (UserId, RecipeId) )