Merge branch 'develop' of github.com:gogits/gogs into feature/pull_request2

# Conflicts:
#	modules/bindata/bindata.go
#	public/css/gogs.min.css
This commit is contained in:
Unknwon 2015-08-10 23:01:41 +08:00
commit 887bc1b594
12 changed files with 143 additions and 78 deletions

View file

@ -97,6 +97,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 {