X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FDeploymentHandler%2FVersionStorage%2FStandard.pm;h=a428534eb968962ef40b76e083a6b282dc1d3f05;hb=fe048ee301e219d737307f2b30e3bd88a7128df6;hp=45678127b52954b1a6acd13b845b389c094f8e9b;hpb=f407579197b3d54de98e487bfa1a978c23aade6a;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm index 4567812..a428534 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm @@ -1,18 +1,16 @@ package DBIx::Class::DeploymentHandler::VersionStorage::Standard; use Moose; use DBIx::Class::DeploymentHandler::Logger; -use Log::Contextual ':log', -default_logger => +use Log::Contextual ':log', -package_logger => DBIx::Class::DeploymentHandler::Logger->new({ env_prefix => 'DBICDH' }); # ABSTRACT: Version storage that does the normal stuff -use Method::Signatures::Simple; use DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult; has schema => ( - isa => 'DBIx::Class::Schema', is => 'ro', required => 1, ); @@ -54,3 +52,8 @@ __PACKAGE__->meta->make_immutable; __END__ +=head1 SEE ALSO + +This class is an implementation of +L. Pretty much all the +documentation is there.