package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::Component;
+# ABSTRACT: (DEPRECATED) Attach this component to your schema to ensure you stay up to date
+
use strict;
use warnings;
package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResult;
+# ABSTRACT: (DEPRECATED) The old way to store versions in the database
+
use strict;
use warnings;
package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResultSet;
+# ABSTRACT: (DEPRECATED) Predefined searches to find what you want from the version storage
+
use strict;
use warnings;
__END__
+=method version_storage_is_installed
+
+True if (!!!) the version storage has been installed
+
+=method database_version
+
+The version of the database
+
+=method create
+
+Overridden to default C<installed> to the current time. (take a look, it's yucky)
package DBIx::Class::DeploymentHandler::VersionStorage::Standard::Component;
+# ABSTRACT: Attach this component to your schema to ensure you stay up to date
+
use strict;
use warnings;
package DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult;
+# ABSTRACT: The typical way to store versions in the database
+
use strict;
use warnings;
package DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResultSet;
+# ABSTRACT: Predefined searches to find what you want from the version storage
+
use strict;
use warnings;
__END__
+=method version_storage_is_installed
+
+True if (!!!) the version storage has been installed
+
+=method database_version
+
+The version of the database