From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 16:33:25 +0000 (+0000) Subject: Add minbpm and maxbpm to songs in SQL. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=f3e82673a0f908bb3047aa60f04e95180083dd89;ds=sidebyside Add minbpm and maxbpm to songs in SQL. --- diff --git a/ccbs.sql b/ccbs.sql index 64b7942..b52bfbf 100644 --- a/ccbs.sql +++ b/ccbs.sql @@ -14,6 +14,8 @@ CREATE TABLE songs ( song SERIAL PRIMARY KEY, title VARCHAR NOT NULL, artist VARCHAR NOT NULL + minbpm INTEGER NOT NULL, + maxbpm INTEGER NOT NULL ); -- CREATE TABLE machinesongs etc.