summaryrefslogtreecommitdiffstats
path: root/store/sql_status_store.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-09-01 16:01:58 -0400
committerGitHub <noreply@github.com>2016-09-01 16:01:58 -0400
commit949e57076aa41584b4104abc2bed98c5f9d91165 (patch)
treef8158bf5937b214dab44ee3904764ce87564f50d /store/sql_status_store.go
parent2b14e422aaccd1ceb20e485301bf3109977b160f (diff)
downloadchat-949e57076aa41584b4104abc2bed98c5f9d91165.tar.gz
chat-949e57076aa41584b4104abc2bed98c5f9d91165.tar.bz2
chat-949e57076aa41584b4104abc2bed98c5f9d91165.zip
Fix status table upgrade (#3933)
Diffstat (limited to 'store/sql_status_store.go')
-rw-r--r--store/sql_status_store.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/store/sql_status_store.go b/store/sql_status_store.go
index 99d89f0d5..9b82484f4 100644
--- a/store/sql_status_store.go
+++ b/store/sql_status_store.go
@@ -23,17 +23,12 @@ func NewSqlStatusStore(sqlStore *SqlStore) StatusStore {
for _, db := range sqlStore.GetAllConns() {
table := db.AddTableWithName(model.Status{}, "Status").SetKeys(false, "UserId")
table.ColMap("UserId").SetMaxSize(26)
- table.ColMap("Manual")
table.ColMap("Status").SetMaxSize(32)
}
return s
}
-func (s SqlStatusStore) UpgradeSchemaIfNeeded() {
- s.CreateColumnIfNotExists("Status", "Manual", "BOOLEAN", "BOOLEAN", "0")
-}
-
func (s SqlStatusStore) CreateIndexesIfNotExists() {
s.CreateIndexIfNotExists("idx_status_user_id", "Status", "UserId")
s.CreateIndexIfNotExists("idx_status_status", "Status", "Status")