Add button to report bad correction
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
1d5e29b8b6
commit
18eb7b4feb
7 changed files with 143 additions and 17 deletions
1
db.go
1
db.go
|
|
@ -125,6 +125,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