summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2016-09-27 06:23:33 +0200
committerDavid Lawrence <dkl@mozilla.com>2016-09-27 06:23:33 +0200
commit0ebea6d9fac5b7da3844829883ee76707c711061 (patch)
treeebe90199aaff15af26e99fdb51b50d0a662d8bbd /Bugzilla/Install
parentf895dcdea69ab03c54a7ad4b4318c5601e195586 (diff)
downloadbugzilla-0ebea6d9fac5b7da3844829883ee76707c711061.tar.gz
bugzilla-0ebea6d9fac5b7da3844829883ee76707c711061.tar.xz
Bug 1268317 - Add Triage Contact to Components as an Editable Field (DB schema only)
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index ca59e778d..387e2468e 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -753,6 +753,10 @@ sub update_table_definitions {
_migrate_preference_categories();
+ # 2016-09-01 dkl@mozilla.com - Bug 1268317
+ $dbh->bz_add_column('components', 'triage_owner_id',
+ {TYPE => 'INT3'});
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################