1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +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

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))
}