check getHydraPath in stead of Envvar HYDRA_DBI directly

This commit is contained in:
Rob Vermaas
2009-05-09 16:10:50 +00:00
parent f1611a7edd
commit b52796feac
2 changed files with 6 additions and 2 deletions

View File

@ -35,7 +35,9 @@ __PACKAGE__->set_primary_key("id");
__PACKAGE__->belongs_to("build", "Hydra::Schema::Builds", { id => "build" });
__PACKAGE__->belongs_to("dependency", "Hydra::Schema::Builds", { id => "dependency" });
if ($ENV{"HYDRA_DBI"} =~ m/^dbi:Pg/) {
use Hydra::Helper::Nix;
if (getHydraDBPath =~ m/^dbi:Pg/) {
__PACKAGE__->sequence('builds_id_seq');
}