diff options
author | Dylan William Hardison <dylan@hardison.net> | 2014-06-12 23:24:30 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2014-06-13 00:04:32 +0200 |
commit | 9916f57f9b56b50aaa82cdfa8fdd6a0c2d46f5d2 (patch) | |
tree | fe9ba9fab42bb6dd619008b956b2d816ca091ded /Bugzilla/Install | |
parent | 9d30eded7551522daaae44f1728e299264d40e38 (diff) | |
download | bugzilla-9916f57f9b56b50aaa82cdfa8fdd6a0c2d46f5d2.tar.gz bugzilla-9916f57f9b56b50aaa82cdfa8fdd6a0c2d46f5d2.tar.xz |
Bug 1022923 - Add index to bug_user_last_visit.last_visit_ts
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 7ab533198..4fb1f1c83 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -706,6 +706,11 @@ sub update_table_definitions { # 2013-08-16 glob@mozilla.com - Bug 905925 $dbh->bz_add_index('attachments', 'attachments_ispatch_idx', ['ispatch']); + # 2014-06-09 dylan@mozilla.com - Bug 1022923 + $dbh->bz_add_index('bug_user_last_visit', + 'bug_user_last_visit_last_visit_ts_idx', + ['last_visit_ts']); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ |