summaryrefslogtreecommitdiffstats
path: root/Smarker/database.py
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-05-24 17:36:08 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2022-05-24 17:36:08 +0100
commit80b5876ac8ce0322e0a5d821e51a1ce07fc95316 (patch)
tree187c2d53044276c85c87649117c4d3e5db02985f /Smarker/database.py
parentf2f734194c03dfff2024cf417c502515ddb7a855 (diff)
downloadSmarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.tar.gz
Smarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.zip
Fixed bug in tex template, added alternative similarity metric, updated docs
Diffstat (limited to 'Smarker/database.py')
-rw-r--r--Smarker/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Smarker/database.py b/Smarker/database.py
index a3f77af..9a6f80a 100644
--- a/Smarker/database.py
+++ b/Smarker/database.py
@@ -72,7 +72,7 @@ class SmarkerDatabase:
student_no VARCHAR(10) NOT NULL,
assessment_name VARCHAR(30) NOT NULL,
submission_dt DATETIME NOT NULL default CURRENT_TIMESTAMP,
- report_yaml TEXT NOT NULL,
+ report_yaml MEDIUMTEXT NOT NULL,
FOREIGN KEY (student_no) REFERENCES students(student_no),
FOREIGN KEY (assessment_name) REFERENCES assessment(assessment_name)
);