mirror of
https://github.com/go-gitea/gitea
synced 2025-07-05 18:17:19 +00:00
minor fix on #1460
This commit is contained in:
@ -96,6 +96,9 @@ func Migrate(x *xorm.Engine) error {
|
||||
}
|
||||
|
||||
v := currentVersion.Version
|
||||
if int(v) > len(migrations) {
|
||||
return nil
|
||||
}
|
||||
for i, m := range migrations[v-_MIN_DB_VER:] {
|
||||
log.Info("Migration: %s", m.Description())
|
||||
if err = m.Migrate(x); err != nil {
|
||||
|
Reference in New Issue
Block a user