summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Pg.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-04-15 01:39:52 +0200
committerlpsolit%gmail.com <>2006-04-15 01:39:52 +0200
commitbd0e09be136d808154320d61bf2725e2324c2243 (patch)
tree06f17d382fa4ecdeb073fcf802ff5c62c778e0a9 /Bugzilla/DB/Pg.pm
parent51142eb85021c17e251524b612750c0543b5874d (diff)
downloadbugzilla-bd0e09be136d808154320d61bf2725e2324c2243.tar.gz
bugzilla-bd0e09be136d808154320d61bf2725e2324c2243.tar.xz
Bug 329537: [PostgreSQL] Bugzilla::DB::Pg can't alter a column to be SERIAL - Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit a=justdave
Diffstat (limited to 'Bugzilla/DB/Pg.pm')
-rw-r--r--Bugzilla/DB/Pg.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm
index a8f54f903..5162466c5 100644
--- a/Bugzilla/DB/Pg.pm
+++ b/Bugzilla/DB/Pg.pm
@@ -50,10 +50,10 @@ use DBD::Pg;
use base qw(Bugzilla::DB);
use constant BLOB_TYPE => { pg_type => DBD::Pg::PG_BYTEA };
-use constant REQUIRED_VERSION => '7.03.0000';
+use constant REQUIRED_VERSION => '8.00.0000';
use constant PROGRAM_NAME => 'PostgreSQL';
use constant MODULE_NAME => 'Pg';
-use constant DBD_VERSION => '1.31';
+use constant DBD_VERSION => '1.45';
sub new {
my ($class, $user, $pass, $host, $dbname, $port) = @_;