]> git.sesse.net Git - ccbs/commitdiff
Fixed a typo in the SQL for shorttitles.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 19 Feb 2005 19:26:40 +0000 (19:26 +0000)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 19 Feb 2005 19:26:40 +0000 (19:26 +0000)
sql/ccbs.sql

index e9b3d321e91a682f6f15907f7ee54046c91dcd99..97bcd3f1be8c9b2a0e0dbcba2ec285240f785b0a 100644 (file)
@@ -25,7 +25,7 @@ CREATE TABLE songs (
 );
 
 CREATE TABLE songshorttitles (
-       song INTEGER NOT NULL REFERENCES song,
+       song INTEGER NOT NULL REFERENCES songs,
        shorttitle VARCHAR NOT NULL,
 
        PRIMARY KEY ( song, shorttitle ),