diff options
author | Dylan William Hardison <dylan@hardison.net> | 2015-05-13 20:49:40 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2015-05-13 20:49:40 +0200 |
commit | bdaf609c71b6b75b0a3182f087b3cd3805e5a199 (patch) | |
tree | 762734814085506932cf576cbe2e136fda2e77fe | |
parent | 0622523114252d26a5710684bfad7b5811173d66 (diff) | |
download | bugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.gz bugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.xz |
Backport bug 69267 to BMO (Add the ability to deactivate keywords) - schema only
r=glob
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Install/DB.pm | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 0f57f5a11..e400879ca 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -593,6 +593,8 @@ use constant ABSTRACT_SCHEMA => { PRIMARYKEY => 1}, name => {TYPE => 'varchar(64)', NOTNULL => 1}, description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1}, + is_active => {TYPE => 'BOOLEAN', NOTNULL => 1, + DEFAULT => 'TRUE'}, ], INDEXES => [ keyworddefs_name_idx => {FIELDS => ['name'], 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 # ################################################################ |