diff options
Diffstat (limited to 'model/sql/testdata.sql')
-rw-r--r-- | model/sql/testdata.sql | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/model/sql/testdata.sql b/model/sql/testdata.sql index f2cd6e3..e47bde9 100644 --- a/model/sql/testdata.sql +++ b/model/sql/testdata.sql @@ -1,13 +1,6 @@ INSERT INTO 'recipes' - ('id', 'title', 'portions', 'url', 'notes') + (id, title, portions, url, notes, created, last_changed) 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') + (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')) ; |