update xorm for bugs fix (#728)

This commit is contained in:
Lunny Xiao 2017-01-23 19:11:57 +08:00 committed by GitHub
parent a8048c19f3
commit 907b6f943c
3 changed files with 5 additions and 5 deletions

View file

@ -359,7 +359,7 @@ func (engine *Engine) DBMetas() ([]*core.Table, error) {
if col := table.GetColumn(name); col != nil {
col.Indexes[index.Name] = index.Type
} else {
return nil, fmt.Errorf("Unknown col %s in indexe %v of table %v, columns %v", name, index.Name, table.Name, table.ColumnsSeq())
return nil, fmt.Errorf("Unknown col %s in index %v of table %v, columns %v", name, index.Name, table.Name, table.ColumnsSeq())
}
}
}