summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-08-26 06:53:12 +0200
committermkanat%bugzilla.org <>2006-08-26 06:53:12 +0200
commit40a2b11f6279554debafdc415754a9d28d9fefaa (patch)
treeb62824fe2f7366144444b84aec22b621834c510e /Bugzilla/DB
parent298bffb5b496415b2f42d705e3d0fb4038a19194 (diff)
downloadbugzilla-40a2b11f6279554debafdc415754a9d28d9fefaa.tar.gz
bugzilla-40a2b11f6279554debafdc415754a9d28d9fefaa.tar.xz
Bug 287170: Need to be able to do fulltext searches on bugs.short_desc even with most tables using InnoDB
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=myk, a=myk
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index a26eb311b..adac0c6d8 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -219,8 +219,7 @@ use constant ABSTRACT_SCHEMA => {
bugs_target_milestone_idx => ['target_milestone'],
bugs_qa_contact_idx => ['qa_contact'],
bugs_votes_idx => ['votes'],
- bugs_short_desc_idx => {FIELDS => ['short_desc'],
- TYPE => 'FULLTEXT'},
+ bugs_short_desc_idx => ['short_desc'],
],
},