summaryrefslogtreecommitdiff
path: root/model/sql/testdata.sql
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-02-06 19:58:49 +0100
committerxengineering <me@xengineering.eu>2024-02-11 20:03:15 +0100
commit30303b34012f22cbe898dcebfd460709b206181d (patch)
tree6ecdf0e65dc30b8012fed971e8cce2b349eec700 /model/sql/testdata.sql
parent1978c5257e2cf4720716b59c3d69dc21cf457c18 (diff)
downloadceres-30303b34012f22cbe898dcebfd460709b206181d.tar
ceres-30303b34012f22cbe898dcebfd460709b206181d.tar.zst
ceres-30303b34012f22cbe898dcebfd460709b206181d.zip
model: Switch to very basic database schema
This simple model is used to test if it is helpful to implement the four CRUD methods create, read, update and delete all inside the model package. The model package should also provide the datastructures for these operations (well suited for the required views) aswell as tests for them. With this approach it should be possible to easily implement the view and controller package because most of the logic is already inside the model package and is tested.
Diffstat (limited to 'model/sql/testdata.sql')
-rw-r--r--model/sql/testdata.sql13
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'))
;