Example doesn't work without 'year' column
Ingy döt Net [Tue, 3 Mar 2015 19:29:39 +0000 (11:29 -0800)]
AUTHORS
Changes
lib/DBIx/Class/Manual/Example.pod

diff --git a/AUTHORS b/AUTHORS
index 8b67c4d..d72f19c 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -84,6 +84,7 @@ hobbs: Andrew Rodland <andrew@cleverdomain.org>
 Ian Wells <ijw@cack.org.uk>
 idn: Ian Norton <i.norton@shadowcat.co.uk>
 ilmari: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
+ingy: Ingy döt Net <ingy@ingy.net>
 initself: Mike Baas <mike@initselftech.com>
 ironcamel: Naveed Massjouni <naveedm9@gmail.com>
 jasonmay: Jason May <jason.a.may@gmail.com>
diff --git a/Changes b/Changes
index e617f91..6c6dbc9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -28,6 +28,7 @@ Revision history for DBIx::Class
 
     * Misc
         - Remove warning about potential side effects of RT#79576 (scheduled)
+        - Various doc improvements (GH#72)
         - Skip tests in a way more intelligent and speedy manner when optional
           dependencies are missing
         - Make the Optional::Dependencies error messages cpanm-friendly
index 2fe95d7..83e96fe 100644 (file)
@@ -49,7 +49,8 @@ Save the following into a example.sql in the directory db
   CREATE TABLE cd (
     cdid INTEGER PRIMARY KEY,
     artist INTEGER NOT NULL REFERENCES artist(artistid),
-    title TEXT NOT NULL
+    title TEXT NOT NULL,
+    year TEXT
   );
 
   CREATE TABLE track (