add some extra doc for non-integer version users
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / Cookbook / CustomResultSource.pod
index a1ad2a6..2f1b79d 100644 (file)
@@ -1,3 +1,5 @@
+package DBIx::Class::DeploymentHandler::Cookbook::CustomResultSource;
+
 =pod
 
 One of the reasons for the absurd level of flexibility that
@@ -92,3 +94,9 @@ table being set on the original result.
  __PACKAGE__->meta->make_immutable;
  1;
 
+Note: if you are using decimal numbers for versioning, you should ammend
+this DeploymentHandler package, setting it's VersionHandler class_name from
+Monotonic ( which handles integer only version numbers ) to ExplicitVersions
+or DatabaseToSchemaVersions, as these handle version numbers as strings
+instead of integers.
+