summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2015-05-13 20:49:40 +0200
committerDylan William Hardison <dylan@hardison.net>2015-05-13 20:49:40 +0200
commitbdaf609c71b6b75b0a3182f087b3cd3805e5a199 (patch)
tree762734814085506932cf576cbe2e136fda2e77fe /Bugzilla/Install
parent0622523114252d26a5710684bfad7b5811173d66 (diff)
downloadbugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.gz
bugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.xz
Backport bug 69267 to BMO (Add the ability to deactivate keywords) - schema only
r=glob
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 beac0ae5a..ba08a3537 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -721,6 +721,10 @@ sub update_table_definitions {
# 2014-10-?? dkl@mozilla.com - Bug 1062940
$dbh->bz_alter_column('bugs', 'alias', { TYPE => 'varchar(40)' });
+ # 2015-05-13 dylan@mozilla.com - Bug 1160430
+ $dbh->bz_add_column('keyworddefs', 'is_active',
+ {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'TRUE'});
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################