WIP: apply a coeff on given points

This commit is contained in:
nemunaire 2016-12-08 12:00:06 +01:00
parent 8d1ee03f02
commit 8bef64ad6b

View file

@ -126,6 +126,7 @@ CREATE TABLE IF NOT EXISTS exercice_solved(
id_exercice INTEGER NOT NULL,
id_team INTEGER NOT NULL,
time TIMESTAMP NOT NULL,
coefficient FLOAT NOT NULL,
FOREIGN KEY(id_exercice) REFERENCES exercices(id_exercice),
FOREIGN KEY(id_team) REFERENCES teams(id_team)
);