summaryrefslogtreecommitdiff
path: root/model/sql
diff options
context:
space:
mode:
Diffstat (limited to 'model/sql')
-rw-r--r--model/sql/recipe-update.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/model/sql/recipe-update.sql b/model/sql/recipe-update.sql
new file mode 100644
index 0000000..fbc03fa
--- /dev/null
+++ b/model/sql/recipe-update.sql
@@ -0,0 +1,7 @@
+UPDATE recipes
+SET
+ title = ?,
+ portions = ?,
+ url = ?,
+ notes = ?
+WHERE id = ?;