summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-10-14 01:16:38 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-10-14 01:16:38 +0200
commit9ea6b6d34c9188172d3118314d33fed77d6dd63e (patch)
treefe330f644a7b7e5a76c1b668fd55470db99fa350 /Bugzilla/DB
parentf0f0bc84ed98afaf3fc912911ca020d9e651ba11 (diff)
downloadbugzilla-9ea6b6d34c9188172d3118314d33fed77d6dd63e.tar.gz
bugzilla-9ea6b6d34c9188172d3118314d33fed77d6dd63e.tar.xz
Bug 451735: Wrong index for the series table
r/a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index c8adde17f..a64aa04a2 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -1304,9 +1304,9 @@ use constant ABSTRACT_SCHEMA => {
DEFAULT => 'FALSE'},
],
INDEXES => [
- series_creator_idx =>
- {FIELDS => [qw(creator category subcategory name)],
- TYPE => 'UNIQUE'},
+ series_creator_idx => ['creator'],
+ series_category_idx => {FIELDS => [qw(category subcategory name)],
+ TYPE => 'UNIQUE'},
],
},