summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-09-17 10:37:46 -0400
committerChristopher Speller <crspeller@gmail.com>2018-09-17 07:37:46 -0700
commit5786b0d6d57b90bbb0c262235dd9d19b497b5fae (patch)
treec3edb5ca24e67981863e767082401fa411926a6c /model
parenta755bcdde63b2f27866d49be97bb82e4cdb0e893 (diff)
downloadchat-5786b0d6d57b90bbb0c262235dd9d19b497b5fae.tar.gz
chat-5786b0d6d57b90bbb0c262235dd9d19b497b5fae.tar.bz2
chat-5786b0d6d57b90bbb0c262235dd9d19b497b5fae.zip
disable EnablePublicChannelsMaterialization by default (#9418)
* disable EnablePublicChannelsMaterialization by default Creating triggers on Amazon RDS seems to reqiure extra privileges. More investigation is required. * update model/config.go too
Diffstat (limited to 'model')
-rw-r--r--model/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/config.go b/model/config.go
index db3030170..7aef548ed 100644
--- a/model/config.go
+++ b/model/config.go
@@ -687,7 +687,7 @@ func (s *SqlSettings) SetDefaults() {
}
if s.EnablePublicChannelsMaterialization == nil {
- s.EnablePublicChannelsMaterialization = NewBool(true)
+ s.EnablePublicChannelsMaterialization = NewBool(false)
}
}