Recipe edit (WIP): add API to set some recipe values
This commit is contained in:
parent
c6dfff065c
commit
dd05a673d9
20 changed files with 690 additions and 2189 deletions
|
|
@ -18,14 +18,14 @@ VALUES (
|
|||
NULL
|
||||
);
|
||||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (1, 'Croissant au jambon');
|
||||
INSERT INTO [Recipe] ([user_id], [title], [is_published])
|
||||
VALUES (1, 'Croissant au jambon', true);
|
||||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (1, 'Gratin de thon aux olives');
|
||||
INSERT INTO [Recipe] ([user_id], [title], [is_published])
|
||||
VALUES (1, 'Gratin de thon aux olives', true);
|
||||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (1, 'Saumon en croute');
|
||||
INSERT INTO [Recipe] ([user_id], [title], [is_published])
|
||||
VALUES (1, 'Saumon en croute', true);
|
||||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (2, 'Ouiche lorraine');
|
||||
INSERT INTO [Recipe] ([user_id], [title], [is_published])
|
||||
VALUES (2, 'Ouiche lorraine', true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue