summaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-11-06 00:37:21 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-11-06 00:37:21 +0100
commit195728b949a4f3aee75e01f4b0e4a0b2f67850da (patch)
tree778737030ae7d4fb3dc538a3f83e59971460b6bc /store
parent7e3b53c37be8d9959fbffb23b6c6eb965386c5fd (diff)
downloadchat-195728b949a4f3aee75e01f4b0e4a0b2f67850da.tar.gz
chat-195728b949a4f3aee75e01f4b0e4a0b2f67850da.tar.bz2
chat-195728b949a4f3aee75e01f4b0e4a0b2f67850da.zip
remove max column size from 'props'
Diffstat (limited to 'store')
-rw-r--r--store/sql_post_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sql_post_store.go b/store/sql_post_store.go
index a523b3320..3460fca92 100644
--- a/store/sql_post_store.go
+++ b/store/sql_post_store.go
@@ -32,7 +32,7 @@ func NewSqlPostStore(sqlStore *SqlStore) PostStore {
table.ColMap("Message").SetMaxSize(4000)
table.ColMap("Type").SetMaxSize(26)
table.ColMap("Hashtags").SetMaxSize(1000)
- table.ColMap("Props").SetMaxSize(4000)
+ table.ColMap("Props")
table.ColMap("Filenames").SetMaxSize(4000)
}