]> git.sesse.net Git - ccbs/commitdiff
Add position to roundparticipation (so we can order by it).
authorSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 18:32:15 +0000 (18:32 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 18:32:15 +0000 (18:32 +0000)
sql/ccbs.sql

index b8660671f1a89548a8788da21a267f0bb8599f2e..11901b4e201e056b338588645b0d746d9b59451b 100644 (file)
@@ -102,8 +102,10 @@ CREATE TABLE roundparticipation (
        round INTEGER NOT NULL,
        parallel INTEGER NOT NULL,
        player INTEGER NOT NULL REFERENCES players,
+       position INTEGER NOT NULL,
 
        UNIQUE (tournament, round, player),
+       UNIQUE (tournament, round, parallel, position)
        FOREIGN KEY (tournament, round, parallel) REFERENCES groups (tournament, round, parallel),
        PRIMARY KEY (tournament, round, parallel, player)
 );