summaryrefslogtreecommitdiffstats
path: root/model/plugin_key_value.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-12-01 15:20:08 -0500
committerGitHub <noreply@github.com>2017-12-01 15:20:08 -0500
commitc3af8785734803b6199a28249537ef3e47fe4caa (patch)
tree8260b673bf1da0a41bd5a8375b5d28789ebefa7d /model/plugin_key_value.go
parent739d91f21387448f0071f06675fb71c7625fa46a (diff)
downloadchat-c3af8785734803b6199a28249537ef3e47fe4caa.tar.gz
chat-c3af8785734803b6199a28249537ef3e47fe4caa.tar.bz2
chat-c3af8785734803b6199a28249537ef3e47fe4caa.zip
Hash key for plugin store table and limit plugin ID length (#7915)
* Hash plugin store keys and update column limits * Limit plugin ID length on install * Add note to manifest id and allow zero length keys
Diffstat (limited to 'model/plugin_key_value.go')
-rw-r--r--model/plugin_key_value.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/model/plugin_key_value.go b/model/plugin_key_value.go
index ceb216c2a..093422c82 100644
--- a/model/plugin_key_value.go
+++ b/model/plugin_key_value.go
@@ -9,8 +9,8 @@ import (
)
const (
- KEY_VALUE_PLUGIN_ID_MAX_RUNES = 100
- KEY_VALUE_KEY_MAX_RUNES = 100
+ KEY_VALUE_PLUGIN_ID_MAX_RUNES = 200
+ KEY_VALUE_KEY_MAX_RUNES = 50
)
type PluginKeyValue struct {