diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-07-05 17:06:37 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-07-05 17:06:37 +0200 |
commit | ea6b82f1303f86e5b62ea23985cc47cea5454f9b (patch) | |
tree | a548590aa11314ed2715f10f9394947fb7aea3ab /Bugzilla/DB | |
parent | e658f6a3e6af7bbcc68d235a58f2294a47074ab6 (diff) | |
download | bugzilla-ea6b82f1303f86e5b62ea23985cc47cea5454f9b.tar.gz bugzilla-ea6b82f1303f86e5b62ea23985cc47cea5454f9b.tar.xz |
Bug 658929 - User autocomplete is very slow when there are lots of users in the profiles table
r/a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 1603dbc4b..85a430f10 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -885,6 +885,8 @@ use constant ABSTRACT_SCHEMA => { mybugslink => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'TRUE'}, extern_id => {TYPE => 'varchar(64)'}, + is_enabled => {TYPE => 'BOOLEAN', NOTNULL => 1, + DEFAULT => 'TRUE'}, ], INDEXES => [ profiles_login_name_idx => {FIELDS => ['login_name'], |