]> git.sesse.net Git - ccbs/commitdiff
Add missing comma to roundparticipation definition.
authorSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 18:45:41 +0000 (18:45 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 18:45:41 +0000 (18:45 +0000)
sql/ccbs.sql

index 11901b4e201e056b338588645b0d746d9b59451b..e452d387d0134da2b1c0d8908f4c012530af4ad4 100644 (file)
@@ -105,7 +105,7 @@ CREATE TABLE roundparticipation (
        position INTEGER NOT NULL,
 
        UNIQUE (tournament, round, player),
-       UNIQUE (tournament, round, parallel, position)
+       UNIQUE (tournament, round, parallel, position),
        FOREIGN KEY (tournament, round, parallel) REFERENCES groups (tournament, round, parallel),
        PRIMARY KEY (tournament, round, parallel, player)
 );