From: Drew Taylor Date: Tue, 13 Jul 2010 14:33:15 +0000 (-0500) Subject: clarify version bumping X-Git-Tag: v0.001003~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=commitdiff_plain;h=f4c2be04d5102c92cf97151e65b9745454a8c787 clarify version bumping --- diff --git a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod index 1ca76f1..6e2b8f6 100644 --- a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod +++ b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod @@ -117,6 +117,12 @@ fail for logical reasons. To be clear, if you add a column to a database and it is not nullable and has no default, what will the existing rows contain for that column? +Now you need to modify the schema version in your MyDatabase::Main file to +tell DBIx::Class::DeploymentHandler the new schema version number. You will +want to remember the earlier advice about integer version numbers. + + our $VERSION = 2; + So here is our next script, C: #!perl