From: Ingy döt Net Date: Tue, 3 Mar 2015 19:29:39 +0000 (-0800) Subject: Example doesn't work without 'year' column X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4dbfa426;p=dbsrgits%2FDBIx-Class.git Example doesn't work without 'year' column --- diff --git a/AUTHORS b/AUTHORS index 4a56099..929e6f4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -84,6 +84,7 @@ hobbs: Andrew Rodland Ian Wells idn: Ian Norton ilmari: Dagfinn Ilmari MannsÃ¥ker +ingy: Ingy döt Net initself: Mike Baas ironcamel: Naveed Massjouni jasonmay: Jason May diff --git a/Changes b/Changes index e617f91..6c6dbc9 100644 --- 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 diff --git a/lib/DBIx/Class/Manual/Example.pod b/lib/DBIx/Class/Manual/Example.pod index 2fe95d7..83e96fe 100644 --- a/lib/DBIx/Class/Manual/Example.pod +++ b/lib/DBIx/Class/Manual/Example.pod @@ -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 (