qa: New field to save exported state of qa

This commit is contained in:
nemunaire 2023-11-26 12:15:51 +01:00
commit 334512ef0d
3 changed files with 14 additions and 11 deletions

View file

@ -499,6 +499,7 @@ CREATE TABLE IF NOT EXISTS exercices_qa(
state VARCHAR(255) NOT NULL,
solved TIMESTAMP NULL,
closed TIMESTAMP NULL,
exported INTEGER NULL,
FOREIGN KEY(id_exercice) REFERENCES exercices(id_exercice),
FOREIGN KEY(id_team) REFERENCES teams(id_team)
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;