git rid of some useless roles
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / WithStandardVersionStorage.pm
diff --git a/lib/DBIx/Class/DeploymentHandler/WithStandardVersionStorage.pm b/lib/DBIx/Class/DeploymentHandler/WithStandardVersionStorage.pm
deleted file mode 100644 (file)
index 499dde9..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package DBIx::Class::DeploymentHandler::WithStandardVersionStorage;
-use Moose::Role;
-
-# ABSTRACT: Delegate/Role for DBIx::Class::DeploymentHandler::VersionStorage::Standard
-
-use DBIx::Class::DeploymentHandler::VersionStorage::Standard;
-
-has version_storage => (
-  does => 'DBIx::Class::DeploymentHandler::HandlesVersionStorage',
-  is  => 'ro',
-  builder => '_build_version_storage',
-  handles =>  'DBIx::Class::DeploymentHandler::HandlesVersionStorage',
-);
-
-sub _build_version_storage {
-  DBIx::Class::DeploymentHandler::VersionStorage::Standard
-    ->new({ schema => $_[0]->schema });
-}
-
-1;
-
-# vim: ts=2 sw=2 expandtab
-
-__END__
-
-=head1 DELEGATION ROLE
-
-This role is entirely for making delegation look like a role.  The actual
-docs for the methods and attributes are at
-L<DBIx::Class::DeploymentHandler::VersionStorage::Standard>