]> git.sesse.net Git - ccbs/commitdiff
Add an "active_rounds" table to the bigscreen schema, and set a primary key for the...
authorSteinar H. Gunderson <sesse@samfundet.no>
Sat, 19 Feb 2005 14:05:58 +0000 (14:05 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sat, 19 Feb 2005 14:05:58 +0000 (14:05 +0000)
sql/ccbs.sql

index 5125fdbbfd87cacb06f4596e893ad7795317c230..0140141c4e029195e2ad77254b105ac439a87350 100644 (file)
@@ -161,5 +161,13 @@ CREATE TABLE randomsongsused (
 CREATE SCHEMA bigscreen;
 
 CREATE TABLE bigscreen.active_tournament (
 CREATE SCHEMA bigscreen;
 
 CREATE TABLE bigscreen.active_tournament (
-       tournament INTEGER NOT NULL REFERENCES tournaments
+       tournament INTEGER NOT NULL PRIMARY KEY REFERENCES tournaments
+);
+CREATE TABLE bigscreen.active_rounds (
+       tournament INTEGER NOT NULL REFERENCES bigscreen.active_tournament,
+       round INTEGER NOT NULL,
+
+       PRIMARY KEY ( tournament, round ),
+       FOREIGN KEY ( tournament, round ) REFERENCES rounds
+);
 );
 );