Этот коммит содержится в:
Elisabeth Kulzer
2021-03-25 15:42:27 +01:00
коммит произвёл GitHub
родитель 94abb34821
Коммит 5329eac020
2 изменённых файлов: 5 добавлений и 4 удалений

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

@@ -13,6 +13,7 @@ import (
// It should be maintained in chronological order with most current // It should be maintained in chronological order with most current
// release at the front of the list. // release at the front of the list.
var versions = []string{ var versions = []string{
"5.34.0",
"5.33.0", "5.33.0",
"5.32.0", "5.32.0",
"5.31.0", "5.31.0",

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

@@ -19,7 +19,7 @@ import (
) )
const ( const (
CurrentSchemaVersion = Version5330 CurrentSchemaVersion = Version5340
Version5340 = "5.34.0" Version5340 = "5.34.0"
Version5330 = "5.33.0" Version5330 = "5.33.0"
Version5320 = "5.32.0" Version5320 = "5.32.0"
@@ -999,7 +999,7 @@ func upgradeDatabaseToVersion533(sqlStore *SqlStore) {
} }
func upgradeDatabaseToVersion534(sqlStore *SqlStore) { func upgradeDatabaseToVersion534(sqlStore *SqlStore) {
// if shouldPerformUpgrade(sqlStore, Version5330, Version5340) { if shouldPerformUpgrade(sqlStore, Version5330, Version5340) {
// saveSchemaVersion(sqlStore, Version5340) saveSchemaVersion(sqlStore, Version5340)
// } }
} }