aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Kronqvist <work.joelkronqvist@pm.me>2022-03-11 20:41:42 +0200
committerJoel Kronqvist <work.joelkronqvist@pm.me>2022-03-11 20:41:42 +0200
commit5ac7049a9d30733165cc212dee308163c2a14644 (patch)
tree92dbb85e2e3dc408d06b8cea6fbf32503482bbbb /README.md
parent01f3f5f2ab89432a253c24f76227b8f6855d8446 (diff)
downloadLYLLRuoka-5ac7049a9d30733165cc212dee308163c2a14644.tar.gz
LYLLRuoka-5ac7049a9d30733165cc212dee308163c2a14644.zip
Food scraping updation
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3286db7..53cc75e 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,14 @@ CREATE TABLE exams (
message VARCHAR(256),
PRIMARY KEY (start, end)
);
+CREATE TABLE foods (
+ week INT,
+ day INT,
+ vegetarian TINYINT,
+ header VARCHAR(15),
+ dateString VARCHAR(13),
+ food VARCHAR(256)
+);
```
> Note that if you had some information in a former database that you don't update manually, it will be lost.