X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FDB.pm;h=5f6bd040d8215978ce87ccd8a07baa3c4dd26a99;hb=466f7faff129a5699c7674f59900a92aa256175d;hp=f44e18500e4ece376a9a52322d6fe1907fd663b6;hpb=6091f73ce65064a2876ba44253a6335e5208f3d9;p=debbugs.git diff --git a/Debbugs/DB.pm b/Debbugs/DB.pm index f44e185..5f6bd04 100644 --- a/Debbugs/DB.pm +++ b/Debbugs/DB.pm @@ -15,6 +15,19 @@ __PACKAGE__->load_namespaces; # Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 10:25:29 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wiMg1t5hFUhnyufL3yT5fQ +# This version must be incremented any time the schema changes so that +# DBIx::Class::DeploymentHandler can do its work +our $VERSION=12; # You can replace this text with custom code or comments, and it will be preserved on regeneration + +# override connect to handle just passing a bare service +sub connect { + my ($self,@rem) = @_; + if ($rem[0] !~ /:/) { + $rem[0] = 'dbi:Pg:service='.$rem[0]; + } + $self->clone->connection(@rem); +} + 1;