1
2
3
4
5
6
7
8
9
10
11
12
13
|
INSERT INTO 'recipes'
('id', 'title', 'portions', 'url', 'notes')
VALUES
(1, 'Pancakes', 4, 'https://example.org', 'Very fluffy'),
(2, 'Burger', 2, 'https://xengineering.eu/git/ceres', 'Delicious!')
;
INSERT INTO 'recipe_steps'
('id', 'recipe_id', 'rank', 'text')
VALUES
(1, 1, 1, 'Stir the dough'),
(2, 1, 2, 'Fry pancakes')
;
|