summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/schema.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/schema.sql b/sql/schema.sql
index 3248f14..51a455b 100644
--- a/sql/schema.sql
+++ b/sql/schema.sql
@@ -24,3 +24,7 @@ CREATE TABLE choices (
FOREIGN KEY(courseid) REFERENCES courses(id),
UNIQUE (userid, courseid)
);
+CREATE TABLE misc (
+ key TEXT PRIMARY KEY NOT NULL,
+ value INTEGER NOT NULL
+);