Fix status table upgrade (#3933)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
2b14e422aa
Коммит
949e57076a
@@ -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")
|
||||
|
||||
@@ -179,12 +179,10 @@ func UpgradeDatabaseToVersion33(sqlStore *SqlStore) {
|
||||
}
|
||||
|
||||
func UpgradeDatabaseToVersion34(sqlStore *SqlStore) {
|
||||
// TODO XXX FIXME should be removed before release
|
||||
//if shouldPerformUpgrade(sqlStore, VERSION_3_3_0, VERSION_3_4_0) {
|
||||
if shouldPerformUpgrade(sqlStore, VERSION_3_3_0, VERSION_3_4_0) {
|
||||
sqlStore.CreateColumnIfNotExists("Status", "Manual", "BOOLEAN", "BOOLEAN", "0")
|
||||
|
||||
// do the actual upgrade
|
||||
|
||||
// TODO XXX FIXME should be removed before release
|
||||
//saveSchemaVersion(sqlStore, VERSION_3_4_0)
|
||||
//}
|
||||
// TODO XXX FIXME should be removed before release
|
||||
//saveSchemaVersion(sqlStore, VERSION_3_4_0)
|
||||
}
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user