fix method names in VersionResultSet
Arthur Axel 'fREW' Schmidt [Wed, 17 Mar 2010 05:49:30 +0000 (00:49 -0500)]
lib/DBIx/Class/DeploymentHandler/VersionResultSet.pm

index 33041a7..cc76c62 100644 (file)
@@ -7,12 +7,12 @@ use parent 'DBIx::Class::ResultSet';
 
 use Try::Tiny;
 
-sub is_installed {
+sub version_storage_is_installed {
   my $self = shift;
   try { $self->next; 1} catch { undef }
 }
 
-sub db_version {
+sub database_version {
   my $self = shift;
   $self->search(undef, {
     order_by => { -desc => 'installed' },