summaryrefslogtreecommitdiffstats
path: root/model/plugin_key_value.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-12-01 23:20:11 -0800
committerGitHub <noreply@github.com>2017-12-01 23:20:11 -0800
commit81c1fad4d4fcc48eebc61905fe4a6226350edd88 (patch)
tree528bbaa725b26b6b3743ac16adff5cb44a81d8d9 /model/plugin_key_value.go
parentc3af8785734803b6199a28249537ef3e47fe4caa (diff)
downloadchat-81c1fad4d4fcc48eebc61905fe4a6226350edd88.tar.gz
chat-81c1fad4d4fcc48eebc61905fe4a6226350edd88.tar.bz2
chat-81c1fad4d4fcc48eebc61905fe4a6226350edd88.zip
Revert "Hash key for plugin store table and limit plugin ID length (#7915)" (#7931)
This reverts commit c3af8785734803b6199a28249537ef3e47fe4caa.
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 093422c82..ceb216c2a 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 = 200
- KEY_VALUE_KEY_MAX_RUNES = 50
+ KEY_VALUE_PLUGIN_ID_MAX_RUNES = 100
+ KEY_VALUE_KEY_MAX_RUNES = 100
)
type PluginKeyValue struct {