summaryrefslogtreecommitdiff
path: root/model/sql/testdata.sql
blob: e47bde9196e959241ebe7208b7a0026dc191b6fa (plain)
1
2
3
4
5
6
INSERT INTO 'recipes'
	(id, title, portions, url, notes, created, last_changed)
VALUES
	(1, 'Pancakes', 4, 'https://example.org', 'Very fluffy', strftime('%s', 'now'), strftime('%s', 'now')),
	(2, 'Burger', 2, 'https://xengineering.eu/git/ceres', 'Delicious!', strftime('%s', 'now'), strftime('%s', 'now'))
;