fix some older Gogs upgrade to Gitea (#929)
This commit is contained in:
parent
be55460b63
commit
837d346090
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ type Repo struct {
|
|||
|
||||
func addUnitsToTables(x *xorm.Engine) error {
|
||||
var repos []Repo
|
||||
err := x.Table("repository").Find(&repos)
|
||||
err := x.Table("repository").Select("*").Find(&repos)
|
||||
if err != nil {
|
||||
return fmt.Errorf("Query repositories: %v", err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue