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'))
;
|