Add button to report bad correction
This commit is contained in:
parent
2e3760c23d
commit
1a5eea3bb2
7 changed files with 143 additions and 17 deletions
1
db.go
1
db.go
|
@ -126,6 +126,7 @@ CREATE TABLE IF NOT EXISTS survey_responses(
|
|||
score_explanation TEXT,
|
||||
id_corrector INTEGER,
|
||||
time_scored TIMESTAMP NULL DEFAULT NULL,
|
||||
time_reported TIMESTAMP NULL DEFAULT NULL,
|
||||
FOREIGN KEY(id_question) REFERENCES survey_quests(id_question),
|
||||
FOREIGN KEY(id_user) REFERENCES users(id_user),
|
||||
FOREIGN KEY(id_corrector) REFERENCES users(id_user)
|
||||
|
|
Reference in a new issue