1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-28 22:25:47 +00:00

Fix the real problem

This commit is contained in:
Lunny Xiao 2024-04-18 16:39:21 +08:00
parent 7922845e70
commit 437cca7f6f
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A

View File

@ -13,5 +13,5 @@ func AddConfidentialClientColumnToOAuth2ApplicationTable(x *xorm.Engine) error {
ConfidentialClient bool `xorm:"NOT NULL DEFAULT TRUE"`
}
return x.Sync(new(OAuth2Application))
return x.Table("oauth2_application").Sync(new(OAuth2Application))
}