From c40b54eef705faf6b767945c05d9623bc80a293e Mon Sep 17 00:00:00 2001 From: visoulier Date: Sun, 31 Mar 2024 00:49:51 +0100 Subject: [PATCH] fix default value of partie --- SpringBootProject/src/main/resources/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpringBootProject/src/main/resources/schema.sql b/SpringBootProject/src/main/resources/schema.sql index 92880e9..5e30951 100644 --- a/SpringBootProject/src/main/resources/schema.sql +++ b/SpringBootProject/src/main/resources/schema.sql @@ -245,7 +245,7 @@ VALUES -- Partie -INSERT INTO Partie(codeInvitation, idJeu, idDifficulte) VALUES ('abcde', 1, 2); +INSERT INTO Partie(codeInvitation, idJeu, idDifficulte, status) VALUES ('abcde', 1, 2, "Pending"); INSERT INTO PartieKahoot(idPartie) VALUES (1); -- Utilisateurs