diff options
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 28f91a23c..1a3ffc69b 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -105,6 +105,8 @@ sub update_fielddefs_definition { #2008-08-26 elliotte_martin@yahoo.com - Bug 251556 $dbh->bz_add_column('fielddefs', 'reverse_desc', {TYPE => 'TINYTEXT'}); + $dbh->do('UPDATE fielddefs SET buglist = 1 + WHERE custom = 1 AND type = ' . FIELD_TYPE_MULTI_SELECT); # Remember, this is not the function for adding general table changes. # That is below. Add new changes to the fielddefs table above this |