Selaa lähdekoodia

add unsupported migration prompt

tags/v0.9.99
Unknwon 8 vuotta sitten
vanhempi
commit
eb30cbab81
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  1. 5
    0
      models/migrations/migrations.go

+ 5
- 0
models/migrations/migrations.go Näytä tiedosto

@@ -106,6 +106,11 @@ func Migrate(x *xorm.Engine) error {
}

v := currentVersion.Version
if _MIN_DB_VER > v {
log.Fatal(4, "Gogs no longer supports auto-migration from your previously installed version. Please try to upgrade to a lower version first, then upgrade to current version.")
return nil
}

if int(v-_MIN_DB_VER) > len(migrations) {
// User downgraded Gogs.
currentVersion.Version = int64(len(migrations) + _MIN_DB_VER)

Loading…
Peruuta
Tallenna