summaryrefslogtreecommitdiffstats
path: root/model/version.go
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-03-28 12:22:55 -0400
committerChristopher Speller <crspeller@gmail.com>2018-03-28 09:22:55 -0700
commit9c9a9ade12825af26f9c4cfac3efbe4e104aa1ad (patch)
tree685ec85de574e0932365e63cac51661a179fe8f9 /model/version.go
parent1ccad749f1edf112be64de849ef31781ed96ff7e (diff)
downloadchat-9c9a9ade12825af26f9c4cfac3efbe4e104aa1ad.tar.gz
chat-9c9a9ade12825af26f9c4cfac3efbe4e104aa1ad.tar.bz2
chat-9c9a9ade12825af26f9c4cfac3efbe4e104aa1ad.zip
Remove the index on Channels.DisplayName. (#8530)
As outlined in [this discussion](https://pre-release.mattermost.com/core/pl/uw5bwmkb6irkbkn6pk9rkzpytr), this index causes issues with MySQL's query planner, leading to full table scans in a case where it would have made more sense to leverage a filesort.
Diffstat (limited to 'model/version.go')
-rw-r--r--model/version.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/model/version.go b/model/version.go
index e4e0af491..38ace0bde 100644
--- a/model/version.go
+++ b/model/version.go
@@ -9,11 +9,13 @@ import (
"strings"
)
-// This is a list of all the current viersions including any patches.
-// It should be maitained in chronological order with most current
+// This is a list of all the current versions including any patches.
+// It should be maintained in chronological order with most current
// release at the front of the list.
var versions = []string{
+ "4.8.1",
"4.8.0",
+ "4.7.2",
"4.7.1",
"4.7.0",
"4.6.0",