Fix incorrect POD in SYNOPSIS
Arthur Axel 'fREW' Schmidt [Fri, 30 Jul 2010 03:06:44 +0000 (22:06 -0500)]
Changes
lib/DBIx/Class/DeploymentHandler.pm

diff --git a/Changes b/Changes
index ee46b98..b097e17 100644 (file)
--- 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
index d1050c6..df0b7eb 100644 (file)
@@ -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;