diff options
author | mkanat%bugzilla.org <> | 2006-08-26 08:55:17 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-26 08:55:17 +0200 |
commit | 0f282627568f7f8ed401506f291730f871fc538a (patch) | |
tree | 098820e1d0ff5848ddb1f5e6f95ae239fd55627c /Bugzilla/Install | |
parent | 192725496a22f2cc37124aecd97748fc5844160c (diff) | |
download | bugzilla-0f282627568f7f8ed401506f291730f871fc538a.tar.gz bugzilla-0f282627568f7f8ed401506f291730f871fc538a.tar.xz |
Bug 350249: We don't need an index on bugs.short_desc
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 09aa5c323..f649686e7 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -482,11 +482,7 @@ sub update_table_definitions { # 2006-08-19 LpSolit@gmail.com - Bug 87795 $dbh->bz_alter_column('tokens', 'userid', {TYPE => 'INT3'}); - my $sd_index = $dbh->bz_index_info('bugs', 'bugs_short_desc_idx'); - if (!$sd_index || ($sd_index->{TYPE} && $sd_index->{TYPE} eq 'FULLTEXT')) { - $dbh->bz_drop_index('bugs', 'bugs_short_desc_idx'); - $dbh->bz_add_index('bugs', 'bugs_short_desc_idx', [qw(short_desc)]); - } + $dbh->bz_drop_index('bugs', 'bugs_short_desc_idx'); # The profiles table was missing some defaults. $dbh->bz_alter_column('profiles', 'disabledtext', |