summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Pg.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-09 14:45:34 +0100
committermkanat%kerio.com <>2005-03-09 14:45:34 +0100
commitf53d4eacd120cdcc4d64bcc06ac3a72f8277a1f4 (patch)
tree4f59d040c801bb87166b5ad1bea40f1cfe98ae3f /Bugzilla/DB/Pg.pm
parent64dcdcd3d321a66e880a28510fb20a1a3d05c445 (diff)
downloadbugzilla-f53d4eacd120cdcc4d64bcc06ac3a72f8277a1f4.tar.gz
bugzilla-f53d4eacd120cdcc4d64bcc06ac3a72f8277a1f4.tar.xz
Bug 284348: Move initial table creation into the Bugzilla::DB modules
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=glob, r=Tomas.Kopal, a=justdave
Diffstat (limited to 'Bugzilla/DB/Pg.pm')
-rw-r--r--Bugzilla/DB/Pg.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm
index 5963f5308..2ec3000d5 100644
--- a/Bugzilla/DB/Pg.pm
+++ b/Bugzilla/DB/Pg.pm
@@ -47,8 +47,9 @@ use Carp;
# This module extends the DB interface via inheritance
use base qw(Bugzilla::DB);
-use constant REQUIRED_VERSION => '7.02.0000';
+use constant REQUIRED_VERSION => '7.03.0000';
use constant PROGRAM_NAME => 'PostgreSQL';
+use constant MODULE_NAME => 'Pg';
sub new {
my ($class, $user, $pass, $host, $dbname, $port) = @_;