summaryrefslogtreecommitdiff
path: root/model/sql
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-03 20:06:40 +0100
committerxengineering <me@xengineering.eu>2024-03-04 20:33:58 +0100
commitb62c686702622b747ab082b7b12b3e611e1d7e1f (patch)
treeaa0f31ad0381dbeb3247870744d07bc9c81ed31b /model/sql
parent4dcd846aa7c8d15c96ba13380f48b985fb2c992e (diff)
downloadceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.tar
ceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.tar.zst
ceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.zip
model: Create test data with Go instead of SQL
This allows to formulate the test data with an object-based model which is easier than writing it down in a relational model.
Diffstat (limited to 'model/sql')
-rw-r--r--model/sql/testdata.sql6
1 files changed, 0 insertions, 6 deletions
diff --git a/model/sql/testdata.sql b/model/sql/testdata.sql
deleted file mode 100644
index e47bde9..0000000
--- a/model/sql/testdata.sql
+++ /dev/null
@@ -1,6 +0,0 @@
-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'))
-;