From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 18:45:41 +0000 (+0000) Subject: Add missing comma to roundparticipation definition. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=244229c66fb0ca1802c1fc5b9626590b54fec2d9 Add missing comma to roundparticipation definition. --- diff --git a/sql/ccbs.sql b/sql/ccbs.sql index 11901b4..e452d38 100644 --- a/sql/ccbs.sql +++ b/sql/ccbs.sql @@ -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) );