summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-09-08 08:41:32 +0200
committermkanat%bugzilla.org <>2006-09-08 08:41:32 +0200
commit460eb160b7d524b38fe7ea340922521c333282d7 (patch)
tree47c5486a0876cdab4871b605c15787719153b3c6 /Bugzilla/Install
parent666dd28a656b6893c96e837517e5ee65e19e1447 (diff)
downloadbugzilla-460eb160b7d524b38fe7ea340922521c333282d7.tar.gz
bugzilla-460eb160b7d524b38fe7ea340922521c333282d7.tar.xz
Bug 350217: Extensions need to be able to update Bugzilla's DB schema
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=ghendricks, a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index d7918f6ac..e4e4e97fe 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -23,6 +23,7 @@ use strict;
use Bugzilla::Bug qw(is_open_state);
use Bugzilla::Constants;
+use Bugzilla::Hook;
use Bugzilla::Util;
use Bugzilla::Series;
@@ -490,6 +491,8 @@ sub update_table_definitions {
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################
+
+ Bugzilla::Hook::process('install-update_db');
}
# Subroutines should be ordered in the order that they are called.