From: Arthur Axel 'fREW' Schmidt Date: Sat, 20 Mar 2010 21:38:15 +0000 (-0500) Subject: I dont thing version storage can be in charge of installing itself X-Git-Tag: v0.001000_01~69 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ee82cb0e76144914d520f60f7369448c188e2fe1;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git I dont thing version storage can be in charge of installing itself --- diff --git a/lib/DBIx/Class/DeploymentHandler/HandlesVersionStorage.pm b/lib/DBIx/Class/DeploymentHandler/HandlesVersionStorage.pm index 3735866..87d1134 100644 --- a/lib/DBIx/Class/DeploymentHandler/HandlesVersionStorage.pm +++ b/lib/DBIx/Class/DeploymentHandler/HandlesVersionStorage.pm @@ -3,7 +3,6 @@ use Moose::Role; requires 'database_version'; requires 'add_database_version'; -requires 'install_version_storage'; requires 'version_storage_is_installed'; 1; diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm index 0d9cd88..c286ffe 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm @@ -25,8 +25,6 @@ sub _build_version_rs { sub add_database_version { $_[0]->version_rs->create($_[1]) } -sub install_version_storage { die } - 1; __END__