summaryrefslogtreecommitdiff
path: root/model/sql
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-10 10:59:23 +0100
committerxengineering <me@xengineering.eu>2024-03-24 10:10:54 +0100
commitddc6e8e1fb8a4b1dfe8421b12e40b15162ae75f1 (patch)
tree202012df833fad11ee274b90bf1b9e3c76759339 /model/sql
parent0520cf604c4dc3279d76e1dd4b49c275dd54611e (diff)
downloadceres-ddc6e8e1fb8a4b1dfe8421b12e40b15162ae75f1.tar
ceres-ddc6e8e1fb8a4b1dfe8421b12e40b15162ae75f1.tar.zst
ceres-ddc6e8e1fb8a4b1dfe8421b12e40b15162ae75f1.zip
model: Add recipe steps
This provides the infrastructure to create views and HTTP handlers to provide recipe steps.
Diffstat (limited to 'model/sql')
-rw-r--r--model/sql/migrate.sql14
1 files changed, 12 insertions, 2 deletions
diff --git a/model/sql/migrate.sql b/model/sql/migrate.sql
index c548724..9577dab 100644
--- a/model/sql/migrate.sql
+++ b/model/sql/migrate.sql
@@ -1,9 +1,19 @@
+PRAGMA foreign_keys = ON;
+
CREATE TABLE recipes (
id INTEGER PRIMARY KEY,
title TEXT NOT NULL,
portions INTEGER NOT NULL,
url TEXT NOT NULL,
notes TEXT NOT NULL,
- created INTEGER NOT NULL, -- unix timestamp
- last_changed INTEGER NOT NULL -- unix timestamp
+ created INTEGER NOT NULL, -- Unix time stamp
+ last_changed INTEGER NOT NULL -- Unix time stamp
+);
+
+CREATE TABLE steps (
+ id INTEGER PRIMARY KEY,
+ recipe INTEGER NOT NULL,
+ 'index' INTEGER NOT NULL,
+ text TEXT NOT NULL,
+ FOREIGN KEY(recipe) REFERENCES recipes(id)
);