minor fix on #1460

This commit is contained in:
Unknwon 2015-08-10 22:59:12 +08:00
parent 2cef9ef5e2
commit 2aea247208
6 changed files with 57 additions and 93 deletions

View file

@ -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 {