]> git.decadent.org.uk Git - maypole.git/commitdiff
Add the style table.
authorSimon Cozens <simon@simon-cozens.org>
Thu, 1 Apr 2004 16:19:50 +0000 (16:19 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Thu, 1 Apr 2004 16:19:50 +0000 (16:19 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@104 48953598-375a-da11-a14b-00016c27c3ee

Makefile.PL

index 16e81ab24bc9222bb2b1c6f8a5371ade19146d99..4b8811038d7ee3d5d56d7f507ddcab11fd6b3076 100644 (file)
@@ -77,6 +77,12 @@ create table pub (
     notes text
 );
 
+create table style (
+    id int not null auto_increment primary key,
+    name varchar(60),
+    notes text
+);
+
 INSERT INTO beer (id, brewery, name, abv) VALUES
     (1, 1, "Organic Best Bitter", "4.1");
 INSERT INTO brewery (id, name, url) VALUES