summaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-09-23 15:04:22 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-09-23 15:04:22 -0400
commit15f15de8ca5ee91e5d11ed017ba0e3d49b1471ec (patch)
treec410bad529a7d968a08e3b4e01cf3e9631eb47d1 /store
parent301706f2558d55271275273dec0de1fb86082f8a (diff)
parente4a15076f458be1416de25b2c45578975b914de5 (diff)
downloadchat-15f15de8ca5ee91e5d11ed017ba0e3d49b1471ec.tar.gz
chat-15f15de8ca5ee91e5d11ed017ba0e3d49b1471ec.tar.bz2
chat-15f15de8ca5ee91e5d11ed017ba0e3d49b1471ec.zip
Merge pull request #759 from mattermost/plt-242-3
PLT-242 Implement custom UI theme colors.
Diffstat (limited to 'store')
-rw-r--r--store/sql_user_store.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/store/sql_user_store.go b/store/sql_user_store.go
index 778df367e..3fd1c82b5 100644
--- a/store/sql_user_store.go
+++ b/store/sql_user_store.go
@@ -32,6 +32,7 @@ func NewSqlUserStore(sqlStore *SqlStore) UserStore {
table.ColMap("Roles").SetMaxSize(64)
table.ColMap("Props").SetMaxSize(4000)
table.ColMap("NotifyProps").SetMaxSize(2000)
+ table.ColMap("ThemeProps").SetMaxSize(2000)
table.SetUniqueTogether("Email", "TeamId")
table.SetUniqueTogether("Username", "TeamId")
}
@@ -40,6 +41,7 @@ func NewSqlUserStore(sqlStore *SqlStore) UserStore {
}
func (us SqlUserStore) UpgradeSchemaIfNeeded() {
+ us.CreateColumnIfNotExists("Users", "ThemeProps", "varchar(2000)", "character varying(2000)", "{}")
}
func (us SqlUserStore) CreateIndexesIfNotExists() {