Add a few missing ABSTRACTs
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / Cookbook / CustomResultSource.pod
index 42cf2d0..e9e694c 100644 (file)
@@ -1,7 +1,11 @@
 package DBIx::Class::DeploymentHandler::Cookbook::CustomResultSource;
 
+# ABSTRACT: Customize how your DBICDH versions are stored
+
 =pod
 
+=head1 DESCRIPTION
+
 One of the reasons for the absurd level of flexibility that
 L<DBIx::Class::DeploymentHandler> is so that you can do things that we did not
 originally anticipate.  Surprisingly, I never added a method to change the
@@ -11,6 +15,10 @@ shows how one can do it in style:
 =head2 Version Storage
 
  package MyApp::Schema::DBICDHStorage;
+ # the following is necessary for some setups
+ use MyApp::Schema::DBICDHStorageResult;
  use Moose;
  extends 'DBIx::Class::DeploymentHandler::VersionStorage::Standard';