1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-11 12:08:21 +00:00

Merge pull request #1724 from lunny/lunny/fix_avatar_update

fix update avatar
This commit is contained in:
Kim "BKC" Carlbäcker
2017-05-15 17:16:31 +02:00
committed by GitHub

View File

@@ -34,6 +34,7 @@ func useNewNameAvatars(x *xorm.Engine) error {
} }
type User struct { type User struct {
ID int64 `xorm:"pk autoincr"`
Avatar string Avatar string
UseCustomAvatar bool UseCustomAvatar bool
} }