Prohibit automatic downgrades (#13108)

Prohibit automatic downgrades by checking the version of the db and warning if the version number should be lower.

Close #13107

Co-authored-by: Cirno the Strongest <1447794+CirnoT@users.noreply.github.com>
mj-v1.14.3
6543 4 years ago committed by GitHub
parent c752ccee64
commit 9513638715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,7 @@ package migrations
import ( import (
"fmt" "fmt"
"os"
"reflect" "reflect"
"regexp" "regexp"
"strings" "strings"
@ -315,12 +316,16 @@ Please try upgrading to a lower version first (suggested v1.6.4), then upgrade t
return nil return nil
} }
// Downgraded Gitea not supported
if int(v-minDBVersion) > len(migrations) { if int(v-minDBVersion) > len(migrations) {
// User downgraded Gitea. msg := fmt.Sprintf("Downgrading Gitea from '%d' to '%d' is not supported and may result in loss of data integrity.\nIf you really know what you're doing, execute `UPDATE version SET version=%d WHERE id=1;`\n",
currentVersion.Version = int64(len(migrations) + minDBVersion) v, minDBVersion+len(migrations), minDBVersion+len(migrations))
_, err = x.ID(1).Update(currentVersion) fmt.Fprint(os.Stderr, msg)
return err log.Fatal(msg)
return nil
} }
// Migrate
for i, m := range migrations[v-minDBVersion:] { for i, m := range migrations[v-minDBVersion:] {
log.Info("Migration[%d]: %s", v+int64(i), m.Description()) log.Info("Migration[%d]: %s", v+int64(i), m.Description())
if err = m.Migrate(x); err != nil { if err = m.Migrate(x); err != nil {

Loading…
Cancel
Save