Service for editing/creating recipe
Other stuff...
This commit is contained in:
parent
adcf4a5a5d
commit
cc2e5b6893
15 changed files with 323 additions and 146 deletions
|
|
@ -2,7 +2,17 @@ INSERT INTO [User] ([id], [email], [name], [password], [creation_datetime], [val
|
|||
VALUES (
|
||||
1,
|
||||
'paul@atreides.com',
|
||||
'paul',
|
||||
'Paul',
|
||||
'$argon2id$v=19$m=4096,t=3,p=1$1vtXcacYjUHZxMrN6b2Xng$wW8Z59MIoMcsIljnjHmxn3EBcc5ymEySZPUVXHlRxcY',
|
||||
0,
|
||||
NULL
|
||||
);
|
||||
|
||||
INSERT INTO [User] ([id], [email], [name], [password], [creation_datetime], [validation_token])
|
||||
VALUES (
|
||||
2,
|
||||
'alia@atreides.com',
|
||||
'Alia',
|
||||
'$argon2id$v=19$m=4096,t=3,p=1$1vtXcacYjUHZxMrN6b2Xng$wW8Z59MIoMcsIljnjHmxn3EBcc5ymEySZPUVXHlRxcY',
|
||||
0,
|
||||
NULL
|
||||
|
|
@ -16,3 +26,6 @@ VALUES (1, 'Gratin de thon aux olives');
|
|||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (1, 'Saumon en croute');
|
||||
|
||||
INSERT INTO [Recipe] ([user_id], [title])
|
||||
VALUES (2, 'Ouiche lorraine');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue