summaryrefslogtreecommitdiff
path: root/model/sql/testdata.sql
blob: f2cd6e3b2aa9ee28ad180324afaec46a4ba3fb0f (plain)
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')
;