summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 07367f0c3..7533b8dd8 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -3868,6 +3868,14 @@ if (!$dbh->bz_get_field_def('bugs', 'qa_contact')->[2]) { # if it's NOT NULL
WHERE initialqacontact = 0");
}
+# 2005-03-17 Add more indices for bugs_activity -- Bug 286625
+print "Adding more indexes for bugs_activity table.\n";
+$dbh->do("ALTER TABLE bugs_activity ADD INDEX bugs_activity_idfield (bug_id, fieldid)");
+$dbh->do("ALTER TABLE bugs_activity ADD FULLTEXT bugs_activity_added (added)");
+$dbh->do("ALTER TABLE bugs_activity ADD FULLTEXT bugs_activity_removed (removed)");
+$dbh->do("ALTER TABLE bugs_activity ADD FULLTEXT bugs_activity_added_removed (added, removed)");
+
+
} # END LEGACY CHECKS