Этот коммит содержится в:
Joram Wilander
2016-09-01 16:01:58 -04:00
коммит произвёл GitHub
родитель 2b14e422aa
Коммит 949e57076a
2 изменённых файлов: 5 добавлений и 12 удалений

Просмотреть файл

@@ -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)
}
}