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

@ -84,6 +84,8 @@ __PACKAGE__->has_many(
# Created by DBIx::Class::Schema::Loader v0.04005 @ 2009-03-13 13:33:20
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xqKyjCWVdoTyQJC28K3WXA
use Hydra::Helper::Nix;
__PACKAGE__->has_many(dependents => 'Hydra::Schema::BuildInputs', 'dependency');
__PACKAGE__->many_to_many(dependentBuilds => 'dependents', 'build');
@ -102,7 +104,7 @@ __PACKAGE__->belongs_to(
{ id => "id" },
);
if ($ENV{"HYDRA_DBI"} =~ m/^dbi:Pg/) {
if (getHydraPath =~ m/^dbi:Pg/) {
__PACKAGE__->sequence('builds_id_seq');
}