minor fix on #1460
This commit is contained in:
parent
2cef9ef5e2
commit
2aea247208
6 changed files with 57 additions and 93 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue