From: Nigel Metheringham <nigelm@cpan.org>
Date: Fri, 24 Sep 2010 14:43:36 +0000 (+0100)
Subject: Correct the resultset used for deployment
X-Git-Tag: v0.001005~9
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4c716580603b0684a444101b1d0de0c18ea2a21f;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git

Correct the resultset used for deployment
---

diff --git a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod
index a214e73..3e24518 100644
--- a/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod
+++ b/lib/DBIx/Class/DeploymentHandler/Manual/Intro.pod
@@ -94,7 +94,7 @@ is create a file called C<dbicdh/_common/deploy/1/create_artists.pl>:
 
  sub {
     my $schema = shift;
-    $schema->resultset('User')->populate([
+    $schema->resultset('Artist')->populate([
        ['name'],
        ['Marillion'],
        ['The Moutain Goats'],