Squashed commit of the following:

commit 1749366a26
Author: Persson-dev <sim16.prib@gmail.com>
Date:   Thu Apr 18 23:39:16 2024 +0200

    les dés

commit d3f06fae1a
Author: Persson-dev <sim16.prib@gmail.com>
Date:   Thu Apr 18 23:39:07 2024 +0200

    je sais plus quoi dire
This commit is contained in:
2024-04-18 23:48:09 +02:00
parent 922e7ecbae
commit d98d9eaa69
21 changed files with 434 additions and 21 deletions

View File

@@ -118,9 +118,8 @@ CREATE TABLE
CREATE TABLE
est_en_position (
PRIMARY KEY (idjoueur, idcarte, idpartie, num_tour),
PRIMARY KEY (idjoueur, idpartie, num_tour),
idjoueur INTEGER NOT NULL,
idcarte INTEGER NOT NULL,
idpartie INTEGER NOT NULL,
num_tour INTEGER NOT NULL,
position VARCHAR(42)
@@ -299,8 +298,6 @@ ALTER TABLE est_en_lien ADD FOREIGN KEY (idclassement_1) REFERENCES classement (
ALTER TABLE est_en_position ADD FOREIGN KEY (idpartie, num_tour) REFERENCES tour (idpartie, num_tour);
ALTER TABLE est_en_position ADD FOREIGN KEY (idcarte) REFERENCES carte (idcarte);
ALTER TABLE est_en_position ADD FOREIGN KEY (idjoueur) REFERENCES joueur (idjoueur);
ALTER TABLE est_lie_a ADD FOREIGN KEY (idclassement_composante) REFERENCES classement (idclassement);