aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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.