Fix DBIC create for MySQL in Appendix (Jarom)
Kennedy Clark [Thu, 19 Feb 2009 01:51:16 +0000 (01:51 +0000)]
Changes
lib/Catalyst/Manual/Tutorial/Appendices.pod

diff --git a/Changes b/Changes
index 884be45..b445f9c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -14,6 +14,7 @@ Revision history for Catalyst-Manual
         - Fix typo in BasicCRUD (RT #42034)
         - Resolve outstanding typo and suggestions in MoreCatalystBasics (RT #41491)
         - Misc minor updates
+        - Fix DBIC create for MySQL in Appendix (Jarom)
 
 5.7016  28 Dec 2008
         - Updates to make Parts 8 & 9 run correctly
index c2e7a56..a539e12 100644 (file)
@@ -321,7 +321,7 @@ Delete the existing model:
 
 Regenerate the model using the Catalyst "_create.pl" script:
 
-    script/myapp_create.pl model MyAppDB DBIC::Schema MyAppDB dbi:mysql:myapp 'tutorial' '' '{ AutoCommit => 1 }'
+    script/myapp_create.pl model MyAppDB DBIC::Schema MyApp::Schema dbi:mysql:myapp 'tutorial' '' '{ AutoCommit => 1 }'
 
 =back