From: Arthur Axel 'fREW' Schmidt Date: Fri, 30 Jul 2010 03:06:44 +0000 (-0500) Subject: Fix incorrect POD in SYNOPSIS X-Git-Tag: v0.001004~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=commitdiff_plain;h=c13268259643c21c42fe7ee7197d66d820c0da8e Fix incorrect POD in SYNOPSIS --- diff --git a/Changes b/Changes index ee46b98..b097e17 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for {{$dist->name}} {{$NEXT}} + - Fix incorrect POD in SYNOPSIS - Add missing attribute to DBIx::Class::DeploymentHandler (force_overwrite) 0.001003 2010-07-15 20:30:37 CST6CDT diff --git a/lib/DBIx/Class/DeploymentHandler.pm b/lib/DBIx/Class/DeploymentHandler.pm index d1050c6..df0b7eb 100644 --- a/lib/DBIx/Class/DeploymentHandler.pm +++ b/lib/DBIx/Class/DeploymentHandler.pm @@ -91,7 +91,10 @@ or for upgrades: sql_translator_args => { add_drop_table => 0 }, }); - $dh->prepare_upgrade(1, 2); + $dh->prepare_upgrade({ + from_version => 1, + to_version => 2, + }); $dh->upgrade;