add missing newline for no-linenumber-change dzil
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / HandlesVersionStorage.pm
index ffdb444..aeba2c3 100644 (file)
@@ -1,6 +1,9 @@
 package DBIx::Class::DeploymentHandler::HandlesVersionStorage;
+
 use Moose::Role;
 
+# ABSTRACT: Interface for version storage methods
+
 requires 'add_database_version';
 requires 'database_version';
 requires 'delete_database_version';
@@ -8,6 +11,9 @@ requires 'version_storage_is_installed';
 
 1;
 
+# vim: ts=2 sw=2 expandtab
+
+__END__
 
 =head1 DESCRIPTION
 
@@ -20,21 +26,23 @@ might want to do in your own storage.
 
  $dh->add_database_version({
    version     => '1.02',
-   ddl         => $ddl # can be undef,
-   upgrade_sql => $sql # can be undef,
+   ddl         => $ddl, # can be undef
+   upgrade_sql => $sql, # can be undef
  });
 
 Store a new version into the version storage
 
 =method database_version
 
- my $db_version = $version_storage->database_version;
+ my $db_version = $version_storage->database_version
+
+Returns the most recently installed version in the database.
 
 =method delete_database_version
 
  $dh->delete_database_version({ version => '1.02' })
 
-simply deletes given database version from the version storage
+Deletes given database version from the version storage
 
 =method version_storage_is_installed
 
@@ -57,6 +65,3 @@ L<DBIx::Class::DeploymentHandler::VersionStorage::Deprecated>
 
 =back
 
-__END__
-
-vim: ts=2 sw=2 expandtab